Browse Source
chore: dev build for multi-packages (#10126)
Co-authored-by: baoqiang <qiang.bao@stanlogy.com>
pull/10146/head
Bou Harusame
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
scripts/dev.js
|
|
@ -14,7 +14,7 @@ import { polyfillNode } from 'esbuild-plugin-polyfill-node' |
|
|
|
const require = createRequire(import.meta.url) |
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url)) |
|
|
|
const args = minimist(process.argv.slice(2)) |
|
|
|
const targets = args._ || ['vue'] |
|
|
|
const targets = args._.length ? args._ : ['vue'] |
|
|
|
const format = args.f || 'global' |
|
|
|
const prod = args.p || false |
|
|
|
const inlineDeps = args.i || args.inline |
|
|
|