build: 📦️ build packages for dev after bootstrap
This commit is contained in:
@ -8,10 +8,13 @@
|
||||
"sites/*"
|
||||
],
|
||||
"scripts": {
|
||||
"build:dev": "sh ./scripts/build-dev",
|
||||
"build:apps": "sh ./scripts/build-apps",
|
||||
"build:demos": "sh ./scripts/build-demos",
|
||||
"build:sites": "sh ./scripts/build-sites",
|
||||
"build:x6-base": "lerna run build --stream --scope @antv/x6-vector --scope @antv/x6-geometry --scope @antv/x6-react-components --scope @antv/x6-sites-demos-helper",
|
||||
"build:x6-core": "lerna run build --stream --scope @antv/x6",
|
||||
"build:x6-exts": "lerna run build --stream --scope @antv/x6-vue-shape --scope @antv/x6-react-shape",
|
||||
"build:dev": "run-s build:x6-base build:x6-core build:x6-exts",
|
||||
"lint": "lerna run lint",
|
||||
"test": "lerna run test --no-private",
|
||||
"build": "lerna run build",
|
||||
|
@ -1,12 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
lerna run build --scope @antv/x6-vector &
|
||||
lerna run build --scope @antv/x6-geometry &
|
||||
lerna run build --scope @antv/x6-react-components &
|
||||
|
||||
wait
|
||||
|
||||
lerna run build --scope @antv/x6
|
||||
|
||||
wait
|
||||
|
||||
lerna run build --scope @antv/x6-react-shape &
|
||||
lerna run build --scope @antv/x6-vue-shape &
|
||||
lerna run build --scope @antv/x6-react-shape &
|
||||
lerna run build --scope @antv/x6-sites-demos-helper
|
||||
|
||||
wait
|
||||
|
Reference in New Issue
Block a user