workflow: rename umd build to global

This commit is contained in:
Evan You
2018-09-19 12:46:55 -04:00
parent d1bc6ee8d6
commit 73106b8553
5 changed files with 28 additions and 28 deletions

View File

@@ -2,7 +2,7 @@
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 "umd"):
formats to watch (defaults to "global"):
```
# name supports fuzzy match. will watch all packages with name containing "dom"
@@ -22,7 +22,7 @@ const formats = args.formats || args.f
execa(
'rollup',
['-wc', '--environment', `TARGET:${target},FORMATS:${formats || 'umd'}`],
['-wc', '--environment', `TARGET:${target},FORMATS:${formats || 'global'}`],
{
stdio: 'inherit'
}