Skip to content

Commit 9e23b90

Browse files
committed
fix(rollup): remove unsupported property in build script
1 parent bc18c02 commit 9e23b90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/utilities/scripts/build.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ const exec = (command, extraEnv) =>
3131
const ignoreGlobs = ['**/__tests__/*', '**/*.test.js'].join(',');
3232

3333
try {
34-
exec(`${babelPath} src -q -d es --ignore "${ignoreGlobs}"`, {
34+
exec(`${babelPath} src --quiet -d es --ignore "${ignoreGlobs}"`, {
3535
BABEL_ENV: 'es',
3636
});
37-
exec(`${babelPath} src -q -d lib --ignore "${ignoreGlobs}"`, {
37+
exec(`${babelPath} src --quiet -d lib --ignore "${ignoreGlobs}"`, {
3838
BABEL_ENV: 'cjs',
3939
});
4040
exec(

0 commit comments

Comments
 (0)