Skip to content

Commit

Permalink
fix: unrecognized pattern on generated sdk lint script
Browse files Browse the repository at this point in the history
  • Loading branch information
cpaulve-1A committed Jan 17, 2024
1 parent ee6ac0b commit 57b291c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ describe('Typescript Shell Generator', () => {
skipInstall: true,
packageManager: 'npm'
}, Tree.empty());
}, 10000);
}, 15000);

it('should generate basic SDK package', () => {
expect(yarnTree.files.sort()).toEqual(baseFileList.sort());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
},
"scripts": {
"clean": "rimraf test/ test-dev/ dist/ dist-dev/ dist-test/ build/",
"lint:ci": "eslint '**/*[jt]s' --quiet --format junit --output-file ./dist-lint/result.xml",
"lint": "eslint '**/*[jt]s' --cache",
"lint:ci": "eslint \"**/*[jt]s\" --quiet --format junit --output-file ./dist-lint/result.xml",
"lint": "eslint \"**/*[jt]s\" --cache",
"start": "tsc-watch -b tsconfigs/esm2020 --noClear --onFirstSuccess \"<%=packageManager%> run files:pack --watch\"",
"build": "<%=packageManager%> run build:cjs && <%=packageManager%> run build:esm2015 && <%=packageManager%> run build:esm2020 && <%=packageManager%> run files:pack",
"build:cjs": "swc src -d dist/cjs -C module.type=commonjs -q",
Expand Down

0 comments on commit 57b291c

Please sign in to comment.