mirror of
https://github.com/idrawjs/idraw
synced 2026-05-24 10:08:34 +00:00
17 lines
No EOL
277 B
JavaScript
17 lines
No EOL
277 B
JavaScript
const execa = require('execa');
|
|
const process = require('process');
|
|
|
|
|
|
async function main() {
|
|
|
|
await execa( 'rollup',
|
|
[
|
|
'-w',
|
|
'-c',
|
|
'./scripts/rollup.config.js',
|
|
`--target-pkg=${process.argv[2] || ''}`,
|
|
], { stdio: 'inherit' }
|
|
)
|
|
}
|
|
|
|
main(); |