From 781e2087a6d217d33001c661712791a59c850d16 Mon Sep 17 00:00:00 2001 From: Spencer Date: Thu, 22 Nov 2018 21:14:09 -0800 Subject: [PATCH] [bootstrap] run babel-cli with --quiet (#26097) This updated the `kbn:boostrap` scripts in the packages to use `--quiet` when bootstrapping. This prevents babel from logging every file it builds, but still logs errors if any occur. To make things a little simpler I also used the [`npm-run-all`](https://github.com/mysticatea/npm-run-all) package in `@kbn/i18n` to execute all the builds there in parallel and pass `--quiet`/`--watch` to all builds without duplicating the tasks or making them incompatible with windows. Before: ``` running `kbn:bootstrap` scripts @kbn/config-schema: $ yarn build @kbn/datemath: $ yarn build @kbn/i18n: $ yarn build @kbn/config-schema: $ tsc @kbn/datemath: $ babel src --out-dir target --copy-files @kbn/i18n: $ yarn build:web && yarn build:node && yarn build:types @kbn/i18n: $ cross-env BABEL_ENV=web babel src --config-file ./babel.config.js --out-dir target/web --extensions ".ts,.js,.tsx" @kbn/datemath: src/index.js -> target/index.js @kbn/i18n: Successfully compiled 18 files with Babel. @kbn/i18n: $ cross-env BABEL_ENV=node babel src --config-file ./babel.config.js --out-dir target/node --extensions ".ts,.js,.tsx" @kbn/i18n: Successfully compiled 18 files with Babel. @kbn/i18n: $ tsc --emitDeclarationOnly @kbn/dev-utils: $ yarn build @kbn/es-query: $ yarn build @kbn/dev-utils: $ babel src --out-dir target @kbn/es-query: $ babel src --out-dir target @kbn/dev-utils: src/index.js -> target/index.js @kbn/dev-utils: src/proc_runner/errors.js -> target/proc_runner/errors.js @kbn/dev-utils: src/proc_runner/index.js -> target/proc_runner/index.js @kbn/dev-utils: src/proc_runner/observe_lines.js -> target/proc_runner/observe_lines.js @kbn/dev-utils: src/proc_runner/observe_readable.js -> target/proc_runner/observe_readable.js @kbn/es-query: src/es_query/__tests__/_migrate_filter.js -> target/es_query/__tests__/_migrate_filter.js @kbn/dev-utils: src/proc_runner/observe_signals.js -> target/proc_runner/observe_signals.js @kbn/es-query: src/es_query/__tests__/build_es_query.js -> target/es_query/__tests__/build_es_query.js @kbn/es-query: src/es_query/__tests__/decorate_query.js -> target/es_query/__tests__/decorate_query.js @kbn/dev-utils: src/proc_runner/proc.js -> target/proc_runner/proc.js @kbn/es-query: src/es_query/__tests__/from_filters.js -> target/es_query/__tests__/from_filters.js @kbn/es-query: src/es_query/__tests__/from_kuery.js -> target/es_query/__tests__/from_kuery.js @kbn/es-query: src/es_query/__tests__/from_lucene.js -> target/es_query/__tests__/from_lucene.js @kbn/es-query: src/es_query/__tests__/lucene_string_to_dsl.js -> target/es_query/__tests__/lucene_string_to_dsl.js @kbn/dev-utils: src/proc_runner/proc_runner.js -> target/proc_runner/proc_runner.js @kbn/dev-utils: src/proc_runner/with_proc_runner.js -> target/proc_runner/with_proc_runner.js @kbn/dev-utils: src/proc_runner/with_proc_runner.test.js -> target/proc_runner/with_proc_runner.test.js @kbn/es-query: src/es_query/build_es_query.js -> target/es_query/build_es_query.js @kbn/dev-utils: src/serializers/absolute_path_serializer.js -> target/serializers/absolute_path_serializer.js @kbn/es-query: src/es_query/decorate_query.js -> target/es_query/decorate_query.js @kbn/dev-utils: src/serializers/index.js -> target/serializers/index.js @kbn/es-query: src/es_query/from_filters.js -> target/es_query/from_filters.js @kbn/dev-utils: src/streams/concat_stream.js -> target/streams/concat_stream.js @kbn/dev-utils: src/streams/index.js -> target/streams/index.js @kbn/dev-utils: src/streams/promise_from_streams.js -> target/streams/promise_from_streams.js @kbn/es-query: src/es_query/from_kuery.js -> target/es_query/from_kuery.js @kbn/dev-utils: src/streams/reduce_stream.js -> target/streams/reduce_stream.js @kbn/es-query: src/es_query/from_lucene.js -> target/es_query/from_lucene.js @kbn/dev-utils: src/tooling_log/index.js -> target/tooling_log/index.js @kbn/es-query: src/es_query/index.js -> target/es_query/index.js @kbn/dev-utils: src/tooling_log/log_levels.js -> target/tooling_log/log_levels.js @kbn/es-query: src/es_query/lucene_string_to_dsl.js -> target/es_query/lucene_string_to_dsl.js @kbn/dev-utils: src/tooling_log/log_levels.test.js -> target/tooling_log/log_levels.test.js @kbn/es-query: src/es_query/migrate_filter.js -> target/es_query/migrate_filter.js @kbn/dev-utils: src/tooling_log/tooling_log.js -> target/tooling_log/tooling_log.js @kbn/es-query: src/filters/__tests__/phrase.js -> target/filters/__tests__/phrase.js @kbn/es-query: src/filters/__tests__/query.js -> target/filters/__tests__/query.js @kbn/dev-utils: src/tooling_log/tooling_log.test.js -> target/tooling_log/tooling_log.test.js @kbn/dev-utils: src/tooling_log/tooling_log_text_writer.js -> target/tooling_log/tooling_log_text_writer.js @kbn/dev-utils: src/tooling_log/tooling_log_text_writer.test.js -> target/tooling_log/tooling_log_text_writer.test.js @kbn/es-query: src/filters/__tests__/range.js -> target/filters/__tests__/range.js @kbn/es-query: src/filters/exists.js -> target/filters/exists.js @kbn/es-query: src/filters/index.js -> target/filters/index.js @kbn/es-query: src/filters/phrase.js -> target/filters/phrase.js @kbn/es-query: src/filters/phrases.js -> target/filters/phrases.js @kbn/es-query: src/filters/query.js -> target/filters/query.js @kbn/es-query: src/filters/range.js -> target/filters/range.js @kbn/es-query: src/index.js -> target/index.js @kbn/es-query: src/kuery/ast/__tests__/ast.js -> target/kuery/ast/__tests__/ast.js @kbn/es-query: src/kuery/ast/ast.js -> target/kuery/ast/ast.js @kbn/es-query: src/kuery/ast/index.js -> target/kuery/ast/index.js @kbn/es-query: src/kuery/ast/kuery.js -> target/kuery/ast/kuery.js @kbn/es-query: src/kuery/ast/legacy_kuery.js -> target/kuery/ast/legacy_kuery.js @kbn/es-query: src/kuery/filter_migration/__tests__/exists.js -> target/kuery/filter_migration/__tests__/exists.js @kbn/es-query: src/kuery/filter_migration/__tests__/filter_to_kuery.js -> target/kuery/filter_migration/__tests__/filter_to_kuery.js @kbn/es-query: src/kuery/filter_migration/__tests__/geo_bounding_box.js -> target/kuery/filter_migration/__tests__/geo_bounding_box.js @kbn/es-query: src/kuery/filter_migration/__tests__/geo_polygon.js -> target/kuery/filter_migration/__tests__/geo_polygon.js @kbn/es-query: src/kuery/filter_migration/__tests__/phrase.js -> target/kuery/filter_migration/__tests__/phrase.js @kbn/es-query: src/kuery/filter_migration/__tests__/range.js -> target/kuery/filter_migration/__tests__/range.js @kbn/es-query: src/kuery/filter_migration/exists.js -> target/kuery/filter_migration/exists.js @kbn/es-query: src/kuery/filter_migration/filter_to_kuery.js -> target/kuery/filter_migration/filter_to_kuery.js @kbn/es-query: src/kuery/filter_migration/geo_bounding_box.js -> target/kuery/filter_migration/geo_bounding_box.js @kbn/es-query: src/kuery/filter_migration/geo_polygon.js -> target/kuery/filter_migration/geo_polygon.js @kbn/es-query: src/kuery/filter_migration/index.js -> target/kuery/filter_migration/index.js @kbn/es-query: src/kuery/filter_migration/phrase.js -> target/kuery/filter_migration/phrase.js @kbn/es-query: src/kuery/filter_migration/range.js -> target/kuery/filter_migration/range.js @kbn/es-query: src/kuery/functions/__tests__/and.js -> target/kuery/functions/__tests__/and.js @kbn/es-query: src/kuery/functions/__tests__/exists.js -> target/kuery/functions/__tests__/exists.js @kbn/es-query: src/kuery/functions/__tests__/geo_bounding_box.js -> target/kuery/functions/__tests__/geo_bounding_box.js @kbn/es-query: src/kuery/functions/__tests__/geo_polygon.js -> target/kuery/functions/__tests__/geo_polygon.js @kbn/es-query: src/kuery/functions/__tests__/is.js -> target/kuery/functions/__tests__/is.js @kbn/es-query: src/kuery/functions/__tests__/not.js -> target/kuery/functions/__tests__/not.js @kbn/es-query: src/kuery/functions/__tests__/or.js -> target/kuery/functions/__tests__/or.js @kbn/es-query: src/kuery/functions/__tests__/range.js -> target/kuery/functions/__tests__/range.js @kbn/es-query: src/kuery/functions/__tests__/utils/get_fields.js -> target/kuery/functions/__tests__/utils/get_fields.js @kbn/es-query: src/kuery/functions/and.js -> target/kuery/functions/and.js @kbn/es-query: src/kuery/functions/exists.js -> target/kuery/functions/exists.js @kbn/es-query: src/kuery/functions/geo_bounding_box.js -> target/kuery/functions/geo_bounding_box.js @kbn/es-query: src/kuery/functions/geo_polygon.js -> target/kuery/functions/geo_polygon.js @kbn/es-query: src/kuery/functions/index.js -> target/kuery/functions/index.js @kbn/es-query: src/kuery/functions/is.js -> target/kuery/functions/is.js @kbn/es-query: src/kuery/functions/not.js -> target/kuery/functions/not.js @kbn/es-query: src/kuery/functions/or.js -> target/kuery/functions/or.js @kbn/es-query: src/kuery/functions/range.js -> target/kuery/functions/range.js @kbn/es-query: src/kuery/functions/utils/get_fields.js -> target/kuery/functions/utils/get_fields.js @kbn/es-query: src/kuery/index.js -> target/kuery/index.js @kbn/es-query: src/kuery/node_types/__tests__/function.js -> target/kuery/node_types/__tests__/function.js @kbn/es-query: src/kuery/node_types/__tests__/literal.js -> target/kuery/node_types/__tests__/literal.js @kbn/es-query: src/kuery/node_types/__tests__/named_arg.js -> target/kuery/node_types/__tests__/named_arg.js @kbn/es-query: src/kuery/node_types/__tests__/wildcard.js -> target/kuery/node_types/__tests__/wildcard.js @kbn/es-query: src/kuery/node_types/function.js -> target/kuery/node_types/function.js @kbn/es-query: src/kuery/node_types/index.js -> target/kuery/node_types/index.js @kbn/es-query: src/kuery/node_types/literal.js -> target/kuery/node_types/literal.js @kbn/es-query: src/kuery/node_types/named_arg.js -> target/kuery/node_types/named_arg.js @kbn/es-query: src/kuery/node_types/wildcard.js -> target/kuery/node_types/wildcard.js @kbn/test: $ yarn build @kbn/test: $ babel src --out-dir target @kbn/test: src/es/es_test_cluster.js -> target/es/es_test_cluster.js @kbn/test: src/es/es_test_config.js -> target/es/es_test_config.js @kbn/test: src/es/index.js -> target/es/index.js @kbn/test: src/functional_tests/cli/index.js -> target/functional_tests/cli/index.js @kbn/test: src/functional_tests/cli/run_tests/args.js -> target/functional_tests/cli/run_tests/args.js @kbn/test: src/functional_tests/cli/run_tests/args.test.js -> target/functional_tests/cli/run_tests/args.test.js @kbn/test: src/functional_tests/cli/run_tests/cli.js -> target/functional_tests/cli/run_tests/cli.js @kbn/test: src/functional_tests/cli/run_tests/cli.test.js -> target/functional_tests/cli/run_tests/cli.test.js @kbn/test: src/functional_tests/cli/start_servers/args.js -> target/functional_tests/cli/start_servers/args.js @kbn/test: src/functional_tests/cli/start_servers/args.test.js -> target/functional_tests/cli/start_servers/args.test.js @kbn/test: src/functional_tests/cli/start_servers/cli.js -> target/functional_tests/cli/start_servers/cli.js @kbn/test: src/functional_tests/cli/start_servers/cli.test.js -> target/functional_tests/cli/start_servers/cli.test.js @kbn/test: src/functional_tests/lib/auth.js -> target/functional_tests/lib/auth.js @kbn/test: src/functional_tests/lib/index.js -> target/functional_tests/lib/index.js @kbn/test: src/functional_tests/lib/paths.js -> target/functional_tests/lib/paths.js @kbn/test: src/functional_tests/lib/run_cli.js -> target/functional_tests/lib/run_cli.js @kbn/test: src/functional_tests/lib/run_cli.test.js -> target/functional_tests/lib/run_cli.test.js @kbn/test: src/functional_tests/lib/run_elasticsearch.js -> target/functional_tests/lib/run_elasticsearch.js @kbn/test: src/functional_tests/lib/run_ftr.js -> target/functional_tests/lib/run_ftr.js @kbn/test: src/functional_tests/lib/run_kibana_server.js -> target/functional_tests/lib/run_kibana_server.js @kbn/test: src/functional_tests/tasks.js -> target/functional_tests/tasks.js @kbn/test: src/functional_tests/test_helpers.js -> target/functional_tests/test_helpers.js @kbn/test: src/index.js -> target/index.js @kbn/test: src/kbn/index.js -> target/kbn/index.js @kbn/test: src/kbn/kbn_test_config.js -> target/kbn/kbn_test_config.js @kbn/test: src/kbn/users.js -> target/kbn/users.js x-pack: $ gulp canvas:plugins:build x-pack: [13:22:34] /Users/spalger/kbn-dev/master/kibana/x-pack/plugins/canvas/canvas_plugin x-pack: [13:22:34] Using gulpfile ~/kbn-dev/master/kibana/x-pack/gulpfile.js x-pack: [13:22:34] Starting 'canvas:plugins:build'... x-pack: [13:22:50] canvas:plugins Plugins built in 15.75 seconds x-pack: [13:22:50] Finished 'canvas:plugins:build' after 16 s kibana: $ yarn build:types && node scripts/register_git_hook kibana: $ tsc --p tsconfig.types.json kibana: Registering Kibana pre-commit git hook... kibana: success Kibana pre-commit git hook was installed successfully. ``` (this will be even worse when we merge #26095) After: ``` running `kbn:bootstrap` scripts @kbn/config-schema: $ yarn build @kbn/datemath: $ yarn build --quiet @kbn/i18n: $ run-p 'build:babel:** --quiet' build:tsc @kbn/datemath: $ babel src --out-dir target --copy-files --quiet @kbn/config-schema: $ tsc @kbn/i18n: $ cross-env BABEL_ENV=node babel src --config-file ./babel.config.js --out-dir target/node --extensions ".ts,.js,.tsx" --quiet @kbn/i18n: $ cross-env BABEL_ENV=web babel src --config-file ./babel.config.js --out-dir target/web --extensions ".ts,.js,.tsx" --quiet @kbn/i18n: $ tsc --emitDeclarationOnly @kbn/i18n: Successfully compiled 18 files with Babel. @kbn/i18n: Successfully compiled 18 files with Babel. @kbn/dev-utils: $ yarn build --quiet @kbn/es-query: $ yarn build --quiet @kbn/dev-utils: $ babel src --out-dir target --quiet @kbn/es-query: $ babel src --out-dir target --quiet @kbn/test: $ yarn build --quiet @kbn/test: $ babel src --out-dir target --quiet x-pack: $ gulp canvas:plugins:build x-pack: [13:16:56] /Users/spalger/kbn-dev/master/kibana/x-pack/plugins/canvas/canvas_plugin x-pack: [13:16:56] Using gulpfile ~/kbn-dev/master/kibana/x-pack/gulpfile.js x-pack: [13:16:56] Starting 'canvas:plugins:build'... x-pack: [13:17:11] canvas:plugins Plugins built in 13.98 seconds x-pack: [13:17:11] Finished 'canvas:plugins:build' after 14 s kibana: $ yarn build:types && node scripts/register_git_hook kibana: $ tsc --p tsconfig.types.json kibana: Registering Kibana pre-commit git hook... kibana: success Kibana pre-commit git hook was installed successfully. ``` --- packages/kbn-datemath/package.json | 2 +- packages/kbn-dev-utils/package.json | 3 +- packages/kbn-i18n/package.json | 14 ++-- packages/kbn-test/package.json | 2 +- yarn.lock | 117 +++++++++++++++++++++++++++- 5 files changed, 126 insertions(+), 12 deletions(-) diff --git a/packages/kbn-datemath/package.json b/packages/kbn-datemath/package.json index 40eb6de14b04e..00d21163006f8 100644 --- a/packages/kbn-datemath/package.json +++ b/packages/kbn-datemath/package.json @@ -8,7 +8,7 @@ "typings": "target/index.d.ts", "scripts": { "build": "babel src --out-dir target --copy-files", - "kbn:bootstrap": "yarn build", + "kbn:bootstrap": "yarn build --quiet", "kbn:watch": "yarn build --watch" }, "devDependencies": { diff --git a/packages/kbn-dev-utils/package.json b/packages/kbn-dev-utils/package.json index 02f4b90512689..deb3c120df373 100644 --- a/packages/kbn-dev-utils/package.json +++ b/packages/kbn-dev-utils/package.json @@ -7,7 +7,8 @@ "private": true, "scripts": { "build": "babel src --out-dir target", - "kbn:bootstrap": "yarn build" + "kbn:bootstrap": "yarn build --quiet", + "kbn:watch": "yarn build --watch" }, "dependencies": { "chalk": "^2.4.1", diff --git a/packages/kbn-i18n/package.json b/packages/kbn-i18n/package.json index 7ef8d10c3a916..410c26658435d 100644 --- a/packages/kbn-i18n/package.json +++ b/packages/kbn-i18n/package.json @@ -7,12 +7,13 @@ "license": "Apache-2.0", "private": true, "scripts": { - "build": "yarn build:web && yarn build:node && yarn build:types", - "build:types": "tsc --emitDeclarationOnly", - "build:web": "cross-env BABEL_ENV=web babel src --config-file ./babel.config.js --out-dir target/web --extensions \".ts,.js,.tsx\"", - "build:node": "cross-env BABEL_ENV=node babel src --config-file ./babel.config.js --out-dir target/node --extensions \".ts,.js,.tsx\"", - "kbn:bootstrap": "yarn build", - "kbn:watch": "yarn build --watch" + "build": "run-p build:**", + "kbn:bootstrap": "run-p 'build:babel:** --quiet' build:tsc", + "kbn:watch": "run-p 'build:** --watch'", + + "build:tsc": "tsc --emitDeclarationOnly", + "build:babel:web": "cross-env BABEL_ENV=web babel src --config-file ./babel.config.js --out-dir target/web --extensions \".ts,.js,.tsx\"", + "build:babel:node": "cross-env BABEL_ENV=node babel src --config-file ./babel.config.js --out-dir target/node --extensions \".ts,.js,.tsx\"" }, "devDependencies": { "@babel/cli": "^7.1.0", @@ -26,6 +27,7 @@ "@types/json5": "^0.0.30", "@types/react-intl": "^2.3.11", "cross-env": "^5.2.0", + "npm-run-all": "^4.1.3", "typescript": "^3.0.3" }, "dependencies": { diff --git a/packages/kbn-test/package.json b/packages/kbn-test/package.json index 773add70b6923..22eb066751a13 100644 --- a/packages/kbn-test/package.json +++ b/packages/kbn-test/package.json @@ -6,7 +6,7 @@ "private": true, "scripts": { "build": "babel src --out-dir target", - "kbn:bootstrap": "yarn build", + "kbn:bootstrap": "yarn build --quiet", "kbn:watch": "yarn build --watch" }, "devDependencies": { diff --git a/yarn.lock b/yarn.lock index 3f441f80deec7..77245954ba45e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2606,6 +2606,11 @@ array-equal@^1.0.0: resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= +array-filter@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" + integrity sha1-fajPLiZijtcygDWB/SH2fKzS7uw= + array-find-index@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" @@ -2634,11 +2639,21 @@ array-includes@^3.0.3: define-properties "^1.1.2" es-abstract "^1.7.0" +array-map@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" + integrity sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI= + array-parallel@~0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/array-parallel/-/array-parallel-0.1.3.tgz#8f785308926ed5aa478c47e64d1b334b6c0c947d" integrity sha1-j3hTCJJu1apHjEfmTRszS2wMlH0= +array-reduce@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" + integrity sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys= + array-series@~0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/array-series/-/array-series-0.1.5.tgz#df5d37bfc5c2ef0755e2aa4f92feae7d4b5a972f" @@ -6086,7 +6101,7 @@ cross-spawn@^5.0.1, cross-spawn@^5.1.0: shebang-command "^1.2.0" which "^1.2.9" -cross-spawn@^6.0.0, cross-spawn@^6.0.5: +cross-spawn@^6.0.0, cross-spawn@^6.0.4, cross-spawn@^6.0.5: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== @@ -7596,6 +7611,17 @@ error@^7.0.0, error@^7.0.2: string-template "~0.2.1" xtend "~4.0.0" +es-abstract@^1.4.3: + version "1.12.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" + integrity sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA== + dependencies: + es-to-primitive "^1.1.1" + function-bind "^1.1.1" + has "^1.0.1" + is-callable "^1.1.3" + is-regex "^1.0.4" + es-abstract@^1.5.1, es-abstract@^1.6.1, es-abstract@^1.7.0: version "1.10.0" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" @@ -8100,6 +8126,20 @@ event-stream@3.3.2: stream-combiner "~0.0.4" through "~2.3.1" +event-stream@~3.3.0: + version "3.3.6" + resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.6.tgz#cac1230890e07e73ec9cacd038f60a5b66173eef" + integrity sha512-dGXNg4F/FgVzlApjzItL+7naHutA3fDqbV/zAZqDDlXTjiMnQmZKu+prImWKszeBM5UQeGvAl3u1wBiKeDh61g== + dependencies: + duplexer "^0.1.1" + flatmap-stream "^0.1.0" + from "^0.1.7" + map-stream "0.0.7" + pause-stream "^0.0.11" + split "^1.0.1" + stream-combiner "^0.2.2" + through "^2.3.8" + eventemitter2@~0.4.13: version "0.4.14" resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-0.4.14.tgz#8f61b75cde012b2e9eb284d4545583b5643b61ab" @@ -8899,6 +8939,11 @@ flat-cache@^1.2.1: graceful-fs "^4.1.2" write "^0.2.1" +flatmap-stream@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/flatmap-stream/-/flatmap-stream-0.1.2.tgz#b1da359a93f24f6d96e46f948552d997e3c2863d" + integrity sha512-ucyr6WkLXjyMuHPtOUq4l+nSAxgWi7v4QO508eQ9resnGj+lSup26oIsUI5aH8k4Qfpjsxa8dDf9UCKkS2KHzQ== + flatten@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" @@ -9079,7 +9124,7 @@ from2@^2.1.0, from2@^2.1.1: inherits "^2.0.1" readable-stream "^2.0.0" -from@^0.1.3, from@~0: +from@^0.1.3, from@^0.1.7, from@~0: version "0.1.7" resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" integrity sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4= @@ -13997,6 +14042,11 @@ map-obj@^2.0.0: resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk= +map-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.0.7.tgz#8a1f07896d82b10926bd3744a2420009f88974a8" + integrity sha1-ih8HiW2CsQkmvTdEokIACfiJdKg= + map-stream@~0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" @@ -14103,6 +14153,11 @@ memory-fs@^0.4.0, memory-fs@~0.4.1: errno "^0.1.3" readable-stream "^2.0.1" +memorystream@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" + integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= + meow@^3.0.0, meow@^3.3.0, meow@^3.7.0: version "3.7.0" resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" @@ -15114,6 +15169,21 @@ npm-packlist@^1.1.6: ignore-walk "^3.0.1" npm-bundled "^1.0.1" +npm-run-all@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.3.tgz#49f15b55a66bb4101664ce270cb18e7103f8f185" + integrity sha512-aOG0N3Eo/WW+q6sUIdzcV2COS8VnTZCmdji0VQIAZF3b+a3YWb0AD0vFIyjKec18A7beLGbaQ5jFTNI2bPt9Cg== + dependencies: + ansi-styles "^3.2.0" + chalk "^2.1.0" + cross-spawn "^6.0.4" + memorystream "^0.3.1" + minimatch "^3.0.4" + ps-tree "^1.1.0" + read-pkg "^3.0.0" + shell-quote "^1.6.1" + string.prototype.padend "^3.0.0" + npm-run-path@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" @@ -16019,7 +16089,7 @@ path-type@^2.0.0: dependencies: pify "^2.0.0" -pause-stream@0.0.11: +pause-stream@0.0.11, pause-stream@^0.0.11: version "0.0.11" resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" integrity sha1-/lo0sMvOErWqaitAPuLnO2AvFEU= @@ -16789,6 +16859,13 @@ prr@~1.0.1: resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= +ps-tree@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" + integrity sha1-tCGyQUDWID8e08dplrRCewjowBQ= + dependencies: + event-stream "~3.3.0" + pseudomap@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" @@ -19186,6 +19263,16 @@ shebang-regex@^1.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= +shell-quote@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" + integrity sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c= + dependencies: + array-filter "~0.0.0" + array-map "~0.0.0" + array-reduce "~0.0.0" + jsonify "~0.0.0" + shelljs@^0.7.0: version "0.7.8" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" @@ -19704,6 +19791,13 @@ split@0.3: dependencies: through "2" +split@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" + integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== + dependencies: + through "2" + sprintf-js@^1.0.3: version "1.1.1" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.1.tgz#36be78320afe5801f6cea3ee78b6e5aab940ea0c" @@ -19830,6 +19924,14 @@ stream-browserify@^2.0.1: inherits "~2.0.1" readable-stream "^2.0.2" +stream-combiner@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.2.2.tgz#aec8cbac177b56b6f4fa479ced8c1912cee52858" + integrity sha1-rsjLrBd7Vrb0+kec7YwZEs7lKFg= + dependencies: + duplexer "~0.1.1" + through "~2.3.4" + stream-combiner@~0.0.4: version "0.0.4" resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" @@ -19940,6 +20042,15 @@ string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" +string.prototype.padend@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.0.0.tgz#f3aaef7c1719f170c5eab1c32bf780d96e21f2f0" + integrity sha1-86rvfBcZ8XDF6rHDK/eA2W4h8vA= + dependencies: + define-properties "^1.1.2" + es-abstract "^1.4.3" + function-bind "^1.0.2" + string_decoder@0.10, string_decoder@~0.10.x: version "0.10.31" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"