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