Skip to content

Commit bfebc34

Browse files
committed
refactor: rename tooling package scope
Signed-off-by: braks <[email protected]>
1 parent 8b38a7f commit bfebc34

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+130
-148
lines changed

.changeset/config.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
"@vue-flow/examples-vite",
1717
"@vue-flow/examples-nuxt3",
1818
"@vue-flow/examples-quasar",
19-
"@vue-flow/eslint-config",
20-
"@vue-flow/tsconfig",
21-
"@vue-flow/vite-config",
2219
"@vue-flow/tests",
2320
"vueflow"
2421
],

docs/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
extends: ['@vue-flow/eslint-config'],
2+
extends: ['@tooling/eslint-config'],
33
}

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@iconify/json": "^2.1.95",
3333
"@types/canvas-confetti": "^1.6.0",
3434
"@types/node": "^18.14.0",
35-
"@vue-flow/eslint-config": "workspace:*",
35+
"@tooling/eslint-config": "workspace:*",
3636
"@windicss/plugin-scrollbar": "^1.2.3",
3737
"dotenv": "^16.0.3",
3838
"ohmyfetch": "^0.4.21",

examples/nuxt3/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
extends: ['@vue-flow/eslint-config'],
2+
extends: ['@tooling/eslint-config'],
33
}

examples/nuxt3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@vue-flow/minimap": "workspace:*"
1313
},
1414
"devDependencies": {
15-
"@vue-flow/eslint-config": "workspace:*",
15+
"@tooling/eslint-config": "workspace:*",
1616
"nuxt": "^3.2.2"
1717
}
1818
}

examples/quasar/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
extends: ['@vue-flow/eslint-config'],
2+
extends: ['@tooling/eslint-config'],
33
}

examples/quasar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"vue-router": "^4.1.5"
1818
},
1919
"devDependencies": {
20+
"@tooling/eslint-config": "workspace:*",
2021
"@quasar/app-vite": "^1.0.5",
21-
"@vue-flow/eslint-config": "workspace:*",
2222
"@vitejs/plugin-vue": "^2.3.4",
2323
"@types/node": "^18.8.3",
2424
"autoprefixer": "^10.4.12"

examples/vite/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
extends: ['@vue-flow/eslint-config'],
2+
extends: ['@tooling/eslint-config'],
33
}

examples/vite/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
"@vue-flow/node-toolbar": "workspace:*"
1717
},
1818
"devDependencies": {
19+
"@tooling/eslint-config": "workspace:*",
20+
"@tooling/tsconfig": "workspace:*",
1921
"@types/dagre": "^0.7.48",
20-
"@vue-flow/eslint-config": "workspace:*",
2122
"@vitejs/plugin-vue": "^4.0.0",
2223
"dagre": "^0.8.5",
2324
"unplugin-auto-import": "^0.14.4",

examples/vite/tsconfig.json

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,19 @@
11
{
2+
"extends": "@tooling/tsconfig/base",
23
"compilerOptions": {
34
"baseUrl": ".",
4-
"module": "ESNext",
5-
"target": "es2017",
6-
"lib": [
7-
"DOM",
8-
"ESNext"
9-
],
105
"noEmit": true,
116
"declaration": false,
12-
"strict": true,
13-
"esModuleInterop": true,
14-
"incremental": false,
15-
"skipLibCheck": true,
16-
"moduleResolution": "node",
177
"resolveJsonModule": true,
18-
"noUnusedLocals": false,
19-
"strictNullChecks": true,
20-
"forceConsistentCasingInFileNames": true,
218
"types": [
229
"vite/client"
2310
],
24-
"jsx": "preserve",
2511
"paths": {
2612
"~/*": [
2713
"../../packages/core/src/*"
2814
]
2915
}
3016
},
31-
"exclude": [
32-
"node_modules",
33-
"dist"
34-
],
3517
"references": [
3618
{
3719
"path": "./tsconfig.node.json"

0 commit comments

Comments
 (0)