feat(nodes): nested boundaries

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-12-20 19:29:52 +01:00
parent f00f34d84b
commit 3f0b0dbd70
8 changed files with 165 additions and 109 deletions
+14 -12
View File
@@ -36,6 +36,20 @@ export default defineConfig({
globals: {
vue: 'Vue',
},
plugins: [
replace({
__VUE_FLOW_VERSION__: JSON.stringify(pkg.version),
preventAssignment: true,
}),
copy({
targets: [
{
src: 'src/theme-default.css',
dest: 'dist',
},
],
}),
],
},
},
},
@@ -48,18 +62,6 @@ export default defineConfig({
imports: ['vue', '@vueuse/core'],
dts: 'src/auto-imports.d.ts',
}),
replace({
__VUE_FLOW_VERSION__: JSON.stringify(pkg.version),
preventAssignment: true,
}),
copy({
targets: [
{
src: 'src/theme-default.css',
dest: 'dist',
},
],
}),
],
optimizeDeps: {
include: ['vue', '@vueuse/core', '@braks/revue-draggable', 'd3-zoom', 'd3-selection'],