Skip to content

Commit e58d3f6

Browse files
authored
chore: dev build for multi-packages (#10126)
Co-authored-by: baoqiang <[email protected]>
1 parent 07922da commit e58d3f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { polyfillNode } from 'esbuild-plugin-polyfill-node'
1414
const require = createRequire(import.meta.url)
1515
const __dirname = dirname(fileURLToPath(import.meta.url))
1616
const args = minimist(process.argv.slice(2))
17-
const targets = args._ || ['vue']
17+
const targets = args._.length ? args._ : ['vue']
1818
const format = args.f || 'global'
1919
const prod = args.p || false
2020
const inlineDeps = args.i || args.inline

0 commit comments

Comments
 (0)