Skip to content

Commit addbded

Browse files
authored
chore: bump all compatible dev dependencies (#1189)
1 parent 9ebdb98 commit addbded

File tree

4 files changed

+1007
-649
lines changed

4 files changed

+1007
-649
lines changed
Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,16 @@ module.exports = {
5454
validate: {
5555
description:
5656
'This runs several scripts to make sure things look good before committing or on clean install',
57-
script: concurrent([
58-
'nps -c ./package-scripts.cjs lint',
59-
'nps -c ./package-scripts.cjs build',
60-
'nps -c ./package-scripts.cjs test',
61-
]),
57+
script: concurrent.nps('lint', 'build', 'test'),
6258
},
6359
format: {
6460
description: 'Formats everything with prettier-eslint',
65-
script: 'prettier-eslint "**/*.{js,json,md,ts,yml}" ".*.js" --write',
61+
// script: 'prettier-eslint "**/*.{js,json,md,ts,yml}" ".*.js" --write',
62+
// eslint-disable-line sonarjs/fixme-tag -- FIXME: temporary workaround for Flat ESLint
63+
script: series(
64+
'prettier "**/*.{js,json,md,ts,yml}" ".*.mjs" --write',
65+
'eslint "**/*.{js,json,md,ts,yml}" ".*.mjs" --fix'
66+
),
6667
},
6768
},
6869
options: {

package.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
"build": "yarn start build",
3636
"format": "yarn start format",
3737
"lint": "yarn start lint",
38-
"prepare": "patch-package && simple-git-hooks",
39-
"start": "nps -c ./package-scripts.cjs",
38+
"prepare": "patch-package && simple-git-hooks && yarn-berry-deduplicate || exit 0",
39+
"start": "nps",
4040
"test": "yarn start test"
4141
},
4242
"peerDependencies": {
@@ -66,25 +66,25 @@
6666
"vue-eslint-parser": "^9.4.3"
6767
},
6868
"devDependencies": {
69-
"@1stg/eslint-config": "^9.0.4",
70-
"@1stg/prettier-config": "^5.1.3",
69+
"@1stg/eslint-config": "^9.0.6",
70+
"@1stg/prettier-config": "^5.2.0",
7171
"@1stg/tsconfig": "^3.0.3",
7272
"@changesets/changelog-github": "^0.5.1",
73-
"@changesets/cli": "^2.29.2",
73+
"@changesets/cli": "^2.29.3",
7474
"@swc-node/jest": "^1.8.13",
75-
"@swc/core": "^1.11.21",
75+
"@swc/core": "^1.11.24",
7676
"@swc/helpers": "^0.5.17",
7777
"@total-typescript/ts-reset": "^0.6.1",
7878
"@types/common-tags": "^1.8.4",
7979
"@types/dlv": "^1.1.5",
8080
"@types/eslint": "^8.56.12",
8181
"@types/jest": "^29.5.14",
8282
"@types/lodash.merge": "^4.6.9",
83-
"@types/node": "^22.14.1",
83+
"@types/node": "^22.15.17",
8484
"@types/require-relative": "^0.8.2",
8585
"@unts/patch-package": "^8.1.1",
8686
"all-contributors-cli": "^6.26.1",
87-
"clean-pkg-json": "^1.2.1",
87+
"clean-pkg-json": "^1.3.0",
8888
"eslint-plugin-jest": "^28.11.0",
8989
"eslint-plugin-node-dependencies": "^0.12.0",
9090
"jest": "^29.7.0",
@@ -93,14 +93,15 @@
9393
"prettier-eslint": "link:.",
9494
"prettier-eslint-cli": "^8.0.1",
9595
"prettier-plugin-jsdoc": "^1.3.2",
96-
"prettier-plugin-jsdoc-type": "^0.1.11",
96+
"prettier-plugin-jsdoc-type": "^0.1.12",
9797
"prettier-plugin-svelte": "^3.3.3",
9898
"rimraf": "^6.0.1",
99-
"simple-git-hooks": "^2.12.1",
99+
"simple-git-hooks": "^2.13.0",
100100
"strip-indent": "^3.0.0",
101101
"svelte": "^4.2.19",
102102
"svelte-eslint-parser": "^0.33.1",
103-
"typescript": "^5.8.3"
103+
"typescript": "^5.8.3",
104+
"yarn-berry-deduplicate": "^6.1.3"
104105
},
105106
"resolutions": {
106107
"eslint-plugin-unicorn": "^56.0.1"

0 commit comments

Comments
 (0)