| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- Run Rollup in watch mode for development.
- To specific the package to watch, simply pass its name and the desired build
- formats to watch (defaults to "global"):
- ```
- # name supports fuzzy match. will watch all packages with name containing "dom"
- nr dev dom
- # specify the format to output
- nr dev core --formats cjs
- # Can also drop all __DEV__ blocks with:
- __DEV__=false nr dev
- ```
- */
- const execa = require('execa')
- const { fuzzyMatchTarget } = require('./utils')
- const args = require('minimist')(process.argv.slice(2))
- const target = args._.length ? fuzzyMatchTarget(args._)[0] : 'vue'
- const formats = args.formats || args.f
- const sourceMap = args.sourcemap || args.s
- const commit = execa.sync('git', ['rev-parse', 'HEAD']).stdout.slice(0, 7)
- execa(
- 'rollup',
- [
- '-wc',
- '--environment',
- [
- `COMMIT:${commit}`,
- `TARGET:${target}`,
- `FORMATS:${formats || 'global'}`,
- sourceMap ? `SOURCE_MAP:true` : ``
- ]
- .filter(Boolean)
- .join(',')
- ],
- {
- stdio: 'inherit'
- }
- )
|