Skip to content

Commit ef060c7

Browse files
chore(deps): upgrade dependencies
BREAKING CHANGE: TypeScript bump from v4 to v5, Jest bump from v28 to v29
1 parent cfb9c66 commit ef060c7

16 files changed

Lines changed: 2882 additions & 2603 deletions

File tree

package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,9 @@
2222
],
2323
"devDependencies": {
2424
"@spotify/eslint-config-oss": "^1.0.0",
25-
"@spotify/eslint-plugin": "^13.0.0",
25+
"@spotify/eslint-plugin": "^14.1.6",
2626
"husky": "^8.0.1",
27-
"lerna": "^5.5.2",
28-
"typescript": "^4.5.0"
29-
},
30-
"resolutions": {
31-
"minimist": "^1.2.6",
32-
"ansi-regex": "^4.1.1"
27+
"lerna": "^6.6.2",
28+
"typescript": "^5.0.4"
3329
}
3430
}

packages/create-web-scripts-library/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
},
3636
"dependencies": {
3737
"chalk": "^4.0.0",
38-
"commander": "^6.1.0",
38+
"commander": "^10.0.1",
3939
"execa": "^5.0.0",
40-
"fs-extra": "^10.0.0",
40+
"fs-extra": "^11.1.1",
4141
"read-pkg-up": "^7.0.1"
4242
},
4343
"devDependencies": {
4444
"@spotify/web-scripts": "^14.1.6",
45-
"@types/fs-extra": "^9.0.13",
45+
"@types/fs-extra": "^11.0.1",
4646
"tempy": "^1.0.1"
4747
},
4848
"publishConfig": {

packages/create-web-scripts-library/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
import program from 'commander';
16+
import { program } from 'commander';
1717
import chalk from 'chalk';
1818

1919
import createWebScriptsLibrary from '.';

packages/create-web-scripts-library/src/messages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
import program from 'commander';
16+
import { program } from 'commander';
1717
import chalk from 'chalk';
1818

1919
export const missingProjectName = () => `

packages/eslint-config-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"main": "index.js",
1111
"scripts": {},
1212
"devDependencies": {
13-
"eslint": "^8.10.0",
13+
"eslint": "^8.40.0",
1414
"eslint-plugin-jsx-a11y": "^6.4.1",
15-
"eslint-plugin-react": "^7.29.2",
15+
"eslint-plugin-react": "^7.32.2",
1616
"eslint-plugin-react-hooks": "^4.2.0"
1717
},
1818
"peerDependencies": {

packages/eslint-config-typescript/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"main": "index.js",
1111
"scripts": {},
1212
"devDependencies": {
13-
"@typescript-eslint/eslint-plugin": "^5.13.0",
14-
"@typescript-eslint/parser": "^5.13.0",
15-
"eslint": "^8.10.0"
13+
"@typescript-eslint/eslint-plugin": "^5.59.6",
14+
"@typescript-eslint/parser": "^5.59.6",
15+
"eslint": "^8.40.0"
1616
},
1717
"peerDependencies": {
1818
"@typescript-eslint/eslint-plugin": ">=5",

packages/eslint-config/package.json

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,24 @@
1818
},
1919
"scripts": {},
2020
"dependencies": {
21-
"@spotify/eslint-config-base": "^13.0.1",
22-
"@spotify/eslint-config-react": "^13.0.1",
23-
"@spotify/eslint-config-typescript": "^13.0.1",
21+
"@spotify/eslint-config-base": "^14.1.6",
22+
"@spotify/eslint-config-react": "^14.1.6",
23+
"@spotify/eslint-config-typescript": "^14.1.6",
2424
"@spotify/eslint-plugin": "^14.1.6",
2525
"@spotify/web-scripts-utils": "^14.1.6",
26-
"@typescript-eslint/eslint-plugin": "^5.13.0",
27-
"@typescript-eslint/parser": "^5.13.0",
28-
"eslint-config-prettier": "^8.1.0",
26+
"@typescript-eslint/eslint-plugin": "^5.59.6",
27+
"@typescript-eslint/parser": "^5.59.6",
28+
"eslint-config-prettier": "^8.8.0",
2929
"eslint-plugin-jest": "^27.1.6",
3030
"eslint-plugin-jsx-a11y": "^6.4.1",
31-
"eslint-plugin-react": "^7.29.2",
31+
"eslint-plugin-react": "^7.32.2",
3232
"eslint-plugin-react-hooks": "^4.2.0"
3333
},
3434
"devDependencies": {
35-
"eslint": "^8.10.0"
35+
"eslint": "^8.40.0"
3636
},
3737
"peerDependencies": {
38-
"@spotify/eslint-plugin": ">=8.x",
39-
"eslint": "^8.10.0"
38+
"eslint": ">=8.x"
4039
},
4140
"publishConfig": {
4241
"access": "public"

packages/eslint-plugin/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@
3535
},
3636
"devDependencies": {
3737
"@spotify/web-scripts": "^14.1.6",
38-
"@types/eslint": "^8.4.1",
39-
"@types/jest": "^28.1.4",
40-
"@typescript-eslint/parser": "^5.13.0",
41-
"@typescript-eslint/types": "^5.13.0",
42-
"eslint": "^8.10.0",
43-
"typescript": "^4.5.0"
38+
"@types/eslint": "^8.37.0",
39+
"@types/jest": "^29.5.1",
40+
"@typescript-eslint/parser": "^5.59.6",
41+
"@typescript-eslint/types": "^5.59.6",
42+
"eslint": "^8.40.0",
43+
"typescript": "^5.0.4"
4444
},
4545
"peerDependencies": {
4646
"@typescript-eslint/parser": "^5.13.0",
47-
"eslint": "^8.10.0"
47+
"eslint": ">=8.x"
4848
},
4949
"publishConfig": {
5050
"access": "public"

packages/prettier-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"main": "index.js",
1111
"scripts": {},
1212
"devDependencies": {
13-
"prettier": "^2.2.1"
13+
"prettier": "^2.8.8"
1414
},
1515
"peerDependencies": {
1616
"prettier": "2.x"

packages/tsconfig/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"test": "true"
1616
},
1717
"devDependencies": {
18-
"typescript": "^4.5.0"
18+
"typescript": "^5.0.4"
1919
},
2020
"peerDependencies": {
21-
"typescript": ">=4 <5"
21+
"typescript": ">=5"
2222
},
2323
"publishConfig": {
2424
"access": "public"

0 commit comments

Comments
 (0)