refactor: rename tooling package scope
Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
@@ -16,9 +16,6 @@
|
||||
"@vue-flow/examples-vite",
|
||||
"@vue-flow/examples-nuxt3",
|
||||
"@vue-flow/examples-quasar",
|
||||
"@vue-flow/eslint-config",
|
||||
"@vue-flow/tsconfig",
|
||||
"@vue-flow/vite-config",
|
||||
"@vue-flow/tests",
|
||||
"vueflow"
|
||||
],
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
"@iconify/json": "^2.1.95",
|
||||
"@types/canvas-confetti": "^1.6.0",
|
||||
"@types/node": "^18.14.0",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@windicss/plugin-scrollbar": "^1.2.3",
|
||||
"dotenv": "^16.0.3",
|
||||
"ohmyfetch": "^0.4.21",
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"@vue-flow/minimap": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"nuxt": "^3.2.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
"vue-router": "^4.1.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@quasar/app-vite": "^1.0.5",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vitejs/plugin-vue": "^2.3.4",
|
||||
"@types/node": "^18.8.3",
|
||||
"autoprefixer": "^10.4.12"
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -16,8 +16,9 @@
|
||||
"@vue-flow/node-toolbar": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@tooling/tsconfig": "workspace:*",
|
||||
"@types/dagre": "^0.7.48",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vitejs/plugin-vue": "^4.0.0",
|
||||
"dagre": "^0.8.5",
|
||||
"unplugin-auto-import": "^0.14.4",
|
||||
|
||||
@@ -1,37 +1,19 @@
|
||||
{
|
||||
"extends": "@tooling/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"module": "ESNext",
|
||||
"target": "es2017",
|
||||
"lib": [
|
||||
"DOM",
|
||||
"ESNext"
|
||||
],
|
||||
"noEmit": true,
|
||||
"declaration": false,
|
||||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"incremental": false,
|
||||
"skipLibCheck": true,
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"noUnusedLocals": false,
|
||||
"strictNullChecks": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"types": [
|
||||
"vite/client"
|
||||
],
|
||||
"jsx": "preserve",
|
||||
"paths": {
|
||||
"~/*": [
|
||||
"../../packages/core/src/*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"dist"
|
||||
],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.node.json"
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -32,10 +32,10 @@
|
||||
"@vue-flow/core": "^1.12.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@tooling/tsconfig": "workspace:*",
|
||||
"@tooling/vite-config": "workspace:*",
|
||||
"@vue-flow/core": "workspace:*",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vue-flow/tsconfig": "workspace:*",
|
||||
"@vue-flow/vite-config": "workspace:*",
|
||||
"vite": "^4.1.4",
|
||||
"vue-tsc": "^1.1.5"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "@vue-flow/tsconfig/base",
|
||||
"extends": "@tooling/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"declarationDir": "./dist",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { resolve } from 'path'
|
||||
import { withConfig } from '@vue-flow/vite-config'
|
||||
import { withConfig } from '@tooling/vite-config'
|
||||
|
||||
export default withConfig({
|
||||
build: {
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -32,10 +32,10 @@
|
||||
"@vue-flow/core": "^1.12.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@tooling/tsconfig": "workspace:*",
|
||||
"@tooling/vite-config": "workspace:*",
|
||||
"@vue-flow/core": "workspace:*",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vue-flow/tsconfig": "workspace:*",
|
||||
"@vue-flow/vite-config": "workspace:*",
|
||||
"vite": "^4.1.4",
|
||||
"vite-svg-loader": "^4.0.0",
|
||||
"vue-tsc": "^1.1.5"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "@vue-flow/tsconfig/base",
|
||||
"extends": "@tooling/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"declarationDir": "./dist",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { resolve } from 'path'
|
||||
import { withConfig } from '@vue-flow/vite-config'
|
||||
import { withConfig } from '@tooling/vite-config'
|
||||
import svgLoader from 'vite-svg-loader'
|
||||
|
||||
export default withConfig({
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -46,10 +46,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-replace": "^5.0.2",
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@tooling/tsconfig": "workspace:*",
|
||||
"@tooling/vite-config": "workspace:*",
|
||||
"@types/d3": "^7.4.0",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vue-flow/tsconfig": "workspace:*",
|
||||
"@vue-flow/vite-config": "workspace:*",
|
||||
"autoprefixer": "^10.4.13",
|
||||
"postcss": "^8.4.21",
|
||||
"postcss-cli": "^10.1.0",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "@vue-flow/tsconfig/base",
|
||||
"extends": "@tooling/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"declarationDir": "./dist",
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -36,12 +36,12 @@
|
||||
"d3-zoom": "^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@tooling/tsconfig": "workspace:*",
|
||||
"@tooling/vite-config": "workspace:*",
|
||||
"@types/d3-selection": "^3.0.3",
|
||||
"@types/d3-zoom": "^3.0.1",
|
||||
"@vue-flow/core": "workspace:*",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vue-flow/tsconfig": "workspace:*",
|
||||
"@vue-flow/vite-config": "workspace:*",
|
||||
"vite": "^4.1.4",
|
||||
"vue-tsc": "^1.1.5"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "@vue-flow/tsconfig/base",
|
||||
"extends": "@tooling/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"declarationDir": "./dist",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { resolve } from 'path'
|
||||
import { withConfig } from '@vue-flow/vite-config'
|
||||
import { withConfig } from '@tooling/vite-config'
|
||||
|
||||
export default withConfig({
|
||||
build: {
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -37,12 +37,12 @@
|
||||
"d3-selection": "^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@tooling/tsconfig": "workspace:*",
|
||||
"@tooling/vite-config": "workspace:*",
|
||||
"@types/d3-drag": "^3.0.1",
|
||||
"@types/d3-selection": "^3.0.3",
|
||||
"@vue-flow/core": "workspace:*",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vue-flow/tsconfig": "workspace:*",
|
||||
"@vue-flow/vite-config": "workspace:*",
|
||||
"vite-plugin-vue-type-imports": "^0.2.4",
|
||||
"vite": "^4.1.4",
|
||||
"vue-tsc": "^1.1.5"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "@vue-flow/tsconfig/base",
|
||||
"extends": "@tooling/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"declarationDir": "./dist",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { resolve } from 'path'
|
||||
import { withConfig } from '@vue-flow/vite-config'
|
||||
import { withConfig } from '@tooling/vite-config'
|
||||
import vueTypes from 'vite-plugin-vue-type-imports'
|
||||
|
||||
export default withConfig({
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -32,10 +32,10 @@
|
||||
"@vue-flow/core": "^1.12.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@tooling/tsconfig": "workspace:*",
|
||||
"@tooling/vite-config": "workspace:*",
|
||||
"@vue-flow/core": "workspace:*",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vue-flow/tsconfig": "workspace:*",
|
||||
"@vue-flow/vite-config": "workspace:*",
|
||||
"vite": "^4.1.4",
|
||||
"vue-tsc": "^1.1.5"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "@vue-flow/tsconfig/base",
|
||||
"extends": "@tooling/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"declarationDir": "./dist",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { resolve } from 'path'
|
||||
import { withConfig } from '@vue-flow/vite-config'
|
||||
import { withConfig } from '@tooling/vite-config'
|
||||
|
||||
export default withConfig({
|
||||
build: {
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -34,11 +34,11 @@
|
||||
"perfect-arrows": "^0.3.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@tooling/tsconfig": "workspace:*",
|
||||
"@tooling/vite-config": "workspace:*",
|
||||
"@types/pathfinding": "^0.0.6",
|
||||
"@vue-flow/core": "workspace:*",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vue-flow/tsconfig": "workspace:*",
|
||||
"@vue-flow/vite-config": "workspace:*",
|
||||
"@vitejs/plugin-vue": "^4.0.0",
|
||||
"ts-patch": "^2.1.0",
|
||||
"typescript-transform-paths": "^3.4.6",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "@vue-flow/tsconfig/base",
|
||||
"extends": "@tooling/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"declarationDir": "./dist",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { resolve } from 'path'
|
||||
import { withConfig } from '@vue-flow/vite-config'
|
||||
import { withConfig } from '@tooling/vite-config'
|
||||
|
||||
export default withConfig({
|
||||
build: {
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
}
|
||||
|
||||
@@ -36,12 +36,12 @@
|
||||
"@vue-flow/background": "workspace:*",
|
||||
"@vue-flow/controls": "workspace:*",
|
||||
"@vue-flow/core": "workspace:*",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vue-flow/tsconfig": "workspace:*",
|
||||
"@vue-flow/vite-config": "workspace:*",
|
||||
"@vue-flow/minimap": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@tooling/tsconfig": "workspace:*",
|
||||
"@tooling/vite-config": "workspace:*",
|
||||
"autoprefixer": "^10.4.13",
|
||||
"postcss": "^8.4.21",
|
||||
"postcss-cli": "^10.1.0",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "@vue-flow/tsconfig/base",
|
||||
"extends": "@tooling/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"declarationDir": "./dist",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { resolve } from 'path'
|
||||
import { withConfig } from '@vue-flow/vite-config'
|
||||
import { withConfig } from '@tooling/vite-config'
|
||||
|
||||
export default withConfig({
|
||||
build: {
|
||||
|
||||
126
pnpm-lock.yaml
generated
126
pnpm-lock.yaml
generated
@@ -25,13 +25,13 @@ importers:
|
||||
'@animxyz/vue3': ^0.6.7
|
||||
'@iconify/json': ^2.1.95
|
||||
'@stackblitz/sdk': ^1.8.2
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@types/canvas-confetti': ^1.6.0
|
||||
'@types/node': ^18.14.0
|
||||
'@vercel/analytics': ^0.1.10
|
||||
'@vue-flow/background': workspace:*
|
||||
'@vue-flow/controls': workspace:*
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/minimap': workspace:*
|
||||
'@vue-flow/node-resizer': workspace:*
|
||||
'@vue-flow/node-toolbar': workspace:*
|
||||
@@ -72,9 +72,9 @@ importers:
|
||||
web-vitals: 3.1.1
|
||||
devDependencies:
|
||||
'@iconify/json': 2.2.26
|
||||
'@tooling/eslint-config': link:../tooling/eslint-config
|
||||
'@types/canvas-confetti': 1.6.0
|
||||
'@types/node': 18.14.0
|
||||
'@vue-flow/eslint-config': link:../tooling/eslint-config
|
||||
'@windicss/plugin-scrollbar': 1.2.3
|
||||
dotenv: 16.0.3
|
||||
ohmyfetch: 0.4.21
|
||||
@@ -91,10 +91,10 @@ importers:
|
||||
|
||||
examples/nuxt3:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@vue-flow/background': workspace:*
|
||||
'@vue-flow/controls': workspace:*
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/minimap': workspace:*
|
||||
nuxt: ^3.2.2
|
||||
dependencies:
|
||||
@@ -103,19 +103,19 @@ importers:
|
||||
'@vue-flow/core': link:../../packages/core
|
||||
'@vue-flow/minimap': link:../../packages/minimap
|
||||
devDependencies:
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
nuxt: 3.2.2
|
||||
|
||||
examples/quasar:
|
||||
specifiers:
|
||||
'@quasar/app-vite': ^1.0.5
|
||||
'@quasar/extras': ^1.15.4
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@types/node': ^18.8.3
|
||||
'@vitejs/plugin-vue': ^2.3.4
|
||||
'@vue-flow/background': workspace:*
|
||||
'@vue-flow/controls': workspace:*
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/minimap': workspace:*
|
||||
autoprefixer: ^10.4.12
|
||||
quasar: ^2.9.2
|
||||
@@ -132,19 +132,20 @@ importers:
|
||||
vue-router: 4.1.6_vue@3.2.47
|
||||
devDependencies:
|
||||
'@quasar/app-vite': 1.2.0_ms5ws4ap3qtvl4y3jvgwelcqfm
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
'@types/node': 18.14.0
|
||||
'@vitejs/plugin-vue': 2.3.4_vite@2.9.15+vue@3.2.47
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
autoprefixer: 10.4.13_postcss@8.4.21
|
||||
|
||||
examples/vite:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@tooling/tsconfig': workspace:*
|
||||
'@types/dagre': ^0.7.48
|
||||
'@vitejs/plugin-vue': ^4.0.0
|
||||
'@vue-flow/background': workspace:*
|
||||
'@vue-flow/controls': workspace:*
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/minimap': workspace:*
|
||||
'@vue-flow/node-resizer': workspace:*
|
||||
'@vue-flow/node-toolbar': workspace:*
|
||||
@@ -164,9 +165,10 @@ importers:
|
||||
'@vue-flow/node-toolbar': link:../../packages/node-toolbar
|
||||
vueflow: link:../../packages/vue-flow
|
||||
devDependencies:
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
'@tooling/tsconfig': link:../../tooling/tsconfig
|
||||
'@types/dagre': 0.7.48
|
||||
'@vitejs/plugin-vue': 4.0.0_vite@4.1.4+vue@3.2.47
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
dagre: 0.8.5
|
||||
unplugin-auto-import: 0.14.4
|
||||
vite: 4.1.4
|
||||
@@ -176,34 +178,34 @@ importers:
|
||||
|
||||
packages/background:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@tooling/tsconfig': workspace:*
|
||||
'@tooling/vite-config': workspace:*
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/tsconfig': workspace:*
|
||||
'@vue-flow/vite-config': workspace:*
|
||||
vite: ^4.1.4
|
||||
vue-tsc: ^1.1.5
|
||||
devDependencies:
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
'@tooling/tsconfig': link:../../tooling/tsconfig
|
||||
'@tooling/vite-config': link:../../tooling/vite-config
|
||||
'@vue-flow/core': link:../core
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
'@vue-flow/tsconfig': link:../../tooling/tsconfig
|
||||
'@vue-flow/vite-config': link:../../tooling/vite-config
|
||||
vite: 4.1.4
|
||||
vue-tsc: 1.1.7_typescript@4.9.5
|
||||
|
||||
packages/controls:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@tooling/tsconfig': workspace:*
|
||||
'@tooling/vite-config': workspace:*
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/tsconfig': workspace:*
|
||||
'@vue-flow/vite-config': workspace:*
|
||||
vite: ^4.1.4
|
||||
vite-svg-loader: ^4.0.0
|
||||
vue-tsc: ^1.1.5
|
||||
devDependencies:
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
'@tooling/tsconfig': link:../../tooling/tsconfig
|
||||
'@tooling/vite-config': link:../../tooling/vite-config
|
||||
'@vue-flow/core': link:../core
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
'@vue-flow/tsconfig': link:../../tooling/tsconfig
|
||||
'@vue-flow/vite-config': link:../../tooling/vite-config
|
||||
vite: 4.1.4
|
||||
vite-svg-loader: 4.0.0
|
||||
vue-tsc: 1.1.7_typescript@4.9.5
|
||||
@@ -211,10 +213,10 @@ importers:
|
||||
packages/core:
|
||||
specifiers:
|
||||
'@rollup/plugin-replace': ^5.0.2
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@tooling/tsconfig': workspace:*
|
||||
'@tooling/vite-config': workspace:*
|
||||
'@types/d3': ^7.4.0
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/tsconfig': workspace:*
|
||||
'@vue-flow/vite-config': workspace:*
|
||||
'@vueuse/core': ^9.13.0
|
||||
autoprefixer: ^10.4.13
|
||||
d3-drag: ^3.0.0
|
||||
@@ -236,10 +238,10 @@ importers:
|
||||
vue: 3.2.47
|
||||
devDependencies:
|
||||
'@rollup/plugin-replace': 5.0.2
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
'@tooling/tsconfig': link:../../tooling/tsconfig
|
||||
'@tooling/vite-config': link:../../tooling/vite-config
|
||||
'@types/d3': 7.4.0
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
'@vue-flow/tsconfig': link:../../tooling/tsconfig
|
||||
'@vue-flow/vite-config': link:../../tooling/vite-config
|
||||
autoprefixer: 10.4.13_postcss@8.4.21
|
||||
postcss: 8.4.21
|
||||
postcss-cli: 10.1.0_postcss@8.4.21
|
||||
@@ -251,12 +253,12 @@ importers:
|
||||
|
||||
packages/minimap:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@tooling/tsconfig': workspace:*
|
||||
'@tooling/vite-config': workspace:*
|
||||
'@types/d3-selection': ^3.0.3
|
||||
'@types/d3-zoom': ^3.0.1
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/tsconfig': workspace:*
|
||||
'@vue-flow/vite-config': workspace:*
|
||||
d3-selection: ^3.0.0
|
||||
d3-zoom: ^3.0.0
|
||||
vite: ^4.1.4
|
||||
@@ -265,23 +267,23 @@ importers:
|
||||
d3-selection: 3.0.0
|
||||
d3-zoom: 3.0.0
|
||||
devDependencies:
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
'@tooling/tsconfig': link:../../tooling/tsconfig
|
||||
'@tooling/vite-config': link:../../tooling/vite-config
|
||||
'@types/d3-selection': 3.0.4
|
||||
'@types/d3-zoom': 3.0.2
|
||||
'@vue-flow/core': link:../core
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
'@vue-flow/tsconfig': link:../../tooling/tsconfig
|
||||
'@vue-flow/vite-config': link:../../tooling/vite-config
|
||||
vite: 4.1.4
|
||||
vue-tsc: 1.1.7_typescript@4.9.5
|
||||
|
||||
packages/node-resizer:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@tooling/tsconfig': workspace:*
|
||||
'@tooling/vite-config': workspace:*
|
||||
'@types/d3-drag': ^3.0.1
|
||||
'@types/d3-selection': ^3.0.3
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/tsconfig': workspace:*
|
||||
'@vue-flow/vite-config': workspace:*
|
||||
d3-drag: ^3.0.0
|
||||
d3-selection: ^3.0.0
|
||||
vite: ^4.1.4
|
||||
@@ -293,40 +295,40 @@ importers:
|
||||
d3-selection: 3.0.0
|
||||
vue: 3.2.47
|
||||
devDependencies:
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
'@tooling/tsconfig': link:../../tooling/tsconfig
|
||||
'@tooling/vite-config': link:../../tooling/vite-config
|
||||
'@types/d3-drag': 3.0.2
|
||||
'@types/d3-selection': 3.0.4
|
||||
'@vue-flow/core': link:../core
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
'@vue-flow/tsconfig': link:../../tooling/tsconfig
|
||||
'@vue-flow/vite-config': link:../../tooling/vite-config
|
||||
vite: 4.1.4
|
||||
vite-plugin-vue-type-imports: 0.2.4_vite@4.1.4+vue@3.2.47
|
||||
vue-tsc: 1.1.7_typescript@4.9.5
|
||||
|
||||
packages/node-toolbar:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@tooling/tsconfig': workspace:*
|
||||
'@tooling/vite-config': workspace:*
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/tsconfig': workspace:*
|
||||
'@vue-flow/vite-config': workspace:*
|
||||
vite: ^4.1.4
|
||||
vue-tsc: ^1.1.5
|
||||
devDependencies:
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
'@tooling/tsconfig': link:../../tooling/tsconfig
|
||||
'@tooling/vite-config': link:../../tooling/vite-config
|
||||
'@vue-flow/core': link:../core
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
'@vue-flow/tsconfig': link:../../tooling/tsconfig
|
||||
'@vue-flow/vite-config': link:../../tooling/vite-config
|
||||
vite: 4.1.4
|
||||
vue-tsc: 1.1.7_typescript@4.9.5
|
||||
|
||||
packages/pathfinding-edge:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@tooling/tsconfig': workspace:*
|
||||
'@tooling/vite-config': workspace:*
|
||||
'@types/pathfinding': ^0.0.6
|
||||
'@vitejs/plugin-vue': ^4.0.0
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/tsconfig': workspace:*
|
||||
'@vue-flow/vite-config': workspace:*
|
||||
pathfinding: ^0.4.18
|
||||
perfect-arrows: ^0.3.7
|
||||
ts-patch: ^2.1.0
|
||||
@@ -337,12 +339,12 @@ importers:
|
||||
pathfinding: 0.4.18
|
||||
perfect-arrows: 0.3.7
|
||||
devDependencies:
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
'@tooling/tsconfig': link:../../tooling/tsconfig
|
||||
'@tooling/vite-config': link:../../tooling/vite-config
|
||||
'@types/pathfinding': 0.0.6
|
||||
'@vitejs/plugin-vue': 4.0.0_vite@4.1.4+vue@3.2.47
|
||||
'@vue-flow/core': link:../core
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
'@vue-flow/tsconfig': link:../../tooling/tsconfig
|
||||
'@vue-flow/vite-config': link:../../tooling/vite-config
|
||||
ts-patch: 2.1.0_typescript@4.9.5
|
||||
typescript-transform-paths: 3.4.6_typescript@4.9.5
|
||||
vite: 4.1.4
|
||||
@@ -350,13 +352,13 @@ importers:
|
||||
|
||||
packages/vue-flow:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@tooling/tsconfig': workspace:*
|
||||
'@tooling/vite-config': workspace:*
|
||||
'@vue-flow/background': workspace:*
|
||||
'@vue-flow/controls': workspace:*
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/minimap': workspace:*
|
||||
'@vue-flow/tsconfig': workspace:*
|
||||
'@vue-flow/vite-config': workspace:*
|
||||
autoprefixer: ^10.4.13
|
||||
postcss: ^8.4.21
|
||||
postcss-cli: ^10.1.0
|
||||
@@ -367,12 +369,12 @@ importers:
|
||||
'@vue-flow/background': link:../background
|
||||
'@vue-flow/controls': link:../controls
|
||||
'@vue-flow/core': link:../core
|
||||
'@vue-flow/eslint-config': link:../../tooling/eslint-config
|
||||
'@vue-flow/minimap': link:../minimap
|
||||
'@vue-flow/tsconfig': link:../../tooling/tsconfig
|
||||
'@vue-flow/vite-config': link:../../tooling/vite-config
|
||||
vue: 3.2.47
|
||||
devDependencies:
|
||||
'@tooling/eslint-config': link:../../tooling/eslint-config
|
||||
'@tooling/tsconfig': link:../../tooling/tsconfig
|
||||
'@tooling/vite-config': link:../../tooling/vite-config
|
||||
autoprefixer: 10.4.13_postcss@8.4.21
|
||||
postcss: 8.4.21
|
||||
postcss-cli: 10.1.0_postcss@8.4.21
|
||||
@@ -381,19 +383,19 @@ importers:
|
||||
|
||||
tests:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@vitejs/plugin-vue': ^4.0.0
|
||||
'@vue-flow/background': workspace:*
|
||||
'@vue-flow/controls': workspace:*
|
||||
'@vue-flow/core': workspace:*
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/minimap': workspace:*
|
||||
cypress: ^12.3.0
|
||||
eslint-plugin-chai-friendly: ^0.7.2
|
||||
dependencies:
|
||||
'@tooling/eslint-config': link:../tooling/eslint-config
|
||||
'@vue-flow/background': link:../packages/background
|
||||
'@vue-flow/controls': link:../packages/controls
|
||||
'@vue-flow/core': link:../packages/core
|
||||
'@vue-flow/eslint-config': link:../tooling/eslint-config
|
||||
'@vue-flow/minimap': link:../packages/minimap
|
||||
devDependencies:
|
||||
'@vitejs/plugin-vue': 4.0.0_vite@4.1.4+vue@3.2.47
|
||||
@@ -419,17 +421,17 @@ importers:
|
||||
|
||||
tooling/vite-config:
|
||||
specifiers:
|
||||
'@tooling/eslint-config': workspace:*
|
||||
'@tooling/tsconfig': workspace:*
|
||||
'@vitejs/plugin-vue': ^4.0.0
|
||||
'@vue-flow/eslint-config': workspace:*
|
||||
'@vue-flow/tsconfig': workspace:*
|
||||
defu: ^6.1.2
|
||||
unplugin-auto-import: ^0.14.4
|
||||
unplugin-vue-macros: ^1.8.2
|
||||
vite: ^4.1.4
|
||||
devDependencies:
|
||||
'@tooling/eslint-config': link:../eslint-config
|
||||
'@tooling/tsconfig': link:../tsconfig
|
||||
'@vitejs/plugin-vue': 4.0.0_vite@4.1.4+vue@3.2.47
|
||||
'@vue-flow/eslint-config': link:../eslint-config
|
||||
'@vue-flow/tsconfig': link:../tsconfig
|
||||
defu: 6.1.2
|
||||
unplugin-auto-import: 0.14.4
|
||||
unplugin-vue-macros: 1.8.2_vite@4.1.4+vue@3.2.47
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
plugins: ['chai-friendly'],
|
||||
rules: {
|
||||
'chai-friendly/no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"@vue-flow/background": "workspace:*",
|
||||
"@vue-flow/controls": "workspace:*",
|
||||
"@vue-flow/core": "workspace:*",
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@vue-flow/minimap": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@vue-flow/eslint-config",
|
||||
"name": "@tooling/eslint-config",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@vue-flow/tsconfig",
|
||||
"name": "@tooling/tsconfig",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"license": "MIT"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
module.exports = {
|
||||
extends: ['@vue-flow/eslint-config'],
|
||||
extends: ['@tooling/eslint-config'],
|
||||
ignorePatterns: '!**/*',
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"name": "@vue-flow/vite-config",
|
||||
"name": "@tooling/vite-config",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"main": "./src/index.js",
|
||||
"types": "./src/index.d.ts",
|
||||
"devDependencies": {
|
||||
"@vue-flow/eslint-config": "workspace:*",
|
||||
"@vue-flow/tsconfig": "workspace:*",
|
||||
"@tooling/eslint-config": "workspace:*",
|
||||
"@tooling/tsconfig": "workspace:*",
|
||||
"@vitejs/plugin-vue": "^4.0.0",
|
||||
"defu": "^6.1.2",
|
||||
"unplugin-auto-import": "^0.14.4",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "@vue-flow/tsconfig/base",
|
||||
"extends": "@tooling/tsconfig/base",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"outDir": ".",
|
||||
|
||||
Reference in New Issue
Block a user