Skip to content

Commit

Permalink
Merge pull request #1002 from spotify/release
Browse files Browse the repository at this point in the history
Release v14
  • Loading branch information
spotify-kai authored Jul 11, 2022
2 parents 5408ad4 + 27e4dce commit 4d2a752
Show file tree
Hide file tree
Showing 7 changed files with 2,497 additions and 2,912 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"devDependencies": {
"@spotify/eslint-config-oss": "^1.0.0",
"@spotify/eslint-plugin": "^13.0.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"husky": "^8.0.1",
"lerna": "^5.1.8",
"typescript": "^4.2.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('integration test', () => {

// check that all the commands work
[
{ cmd: 'lint', asyncTimeout: 15000 },
{ cmd: 'lint', asyncTimeout: 20000 },
{ cmd: 'test', asyncTimeout: 30000 },
{ cmd: 'build', asyncTimeout: 60000 },
].forEach(
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"devDependencies": {
"@spotify/web-scripts": "^13.0.1",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.0.1",
"@types/jest": "^28.1.4",
"@typescript-eslint/parser": "^5.13.0",
"@typescript-eslint/types": "^5.13.0",
"eslint": "^8.10.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-scripts-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"devDependencies": {
"@spotify/tsconfig": "^13.0.1",
"@types/jest": "^27.0.1"
"@types/jest": "^28.1.4"
},
"publishConfig": {
"access": "public"
Expand Down
18 changes: 9 additions & 9 deletions packages/web-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,29 @@
"prepublishOnly": "yarn run bootstrap && yarn run build"
},
"dependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@spotify/eslint-config": "^13.0.1",
"@spotify/prettier-config": "^13.0.1",
"@spotify/tsconfig": "^13.0.1",
"@spotify/web-scripts-utils": "^13.0.1",
"@types/cross-spawn": "^6.0.0",
"@types/debug": "^4.1.2",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.5",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"commander": "^6.1.0",
"commitizen": "^4.2.3",
"cross-spawn-promise": "^0.10.1",
"cz-conventional-changelog": "^3.0.2",
"debug": "^4.1.1",
"eslint": "^8.10.0",
"jest": "^27.0.1",
"jest-junit": "^13.0.0",
"lint-staged": "^12.3.4",
"jest": "^28.1.2",
"jest-junit": "^14.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.2.1",
"semantic-release": "^19.0.2",
"ts-jest": "^27.0.1",
"ts-jest": "^28.0.5",
"typescript": "^4.2.3"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/web-scripts/src/Tasks/BuildTask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ async function buildTypes(task: BuildTaskDesc): Promise<string> {
'--emitDeclarationOnly',
'--noEmit',
'false',
'--module',
'CommonJS',
...task.restOptions,
];
const stdout = await spawn(cmd, args, { stdio: 'inherit' });
Expand All @@ -69,6 +71,8 @@ async function buildCJS(task: BuildTaskDesc): Promise<string> {
const cmd = 'npx';
const args = [
'tsc',
'--declaration',
'false',
'--allowJs',
'--outDir',
'cjs',
Expand All @@ -86,6 +90,8 @@ async function buildESM(task: BuildTaskDesc): Promise<string> {
const cmd = 'npx';
const args = [
'tsc',
'--declaration',
'false',
'--allowJs',
'--outDir',
'esm',
Expand Down
Loading

0 comments on commit 4d2a752

Please sign in to comment.