From fe7f48c1d5800ac91b48d4311514abd1731dff7e Mon Sep 17 00:00:00 2001 From: Brandon Roberts Date: Thu, 3 May 2018 22:01:25 -0500 Subject: [PATCH] docs(aio): Upgrade example dependencies to Angular V6 (#23660) PR Close #23660 --- aio/content/guide/i18n.md | 19 +- .../shared/boilerplate/cli/package.json | 28 +- .../shared/boilerplate/i18n/package.json | 30 +- .../shared/boilerplate/universal/package.json | 36 +- aio/tools/examples/shared/package.json | 38 +- aio/tools/examples/shared/yarn.lock | 451 ++++++++++-------- 6 files changed, 333 insertions(+), 269 deletions(-) diff --git a/aio/content/guide/i18n.md b/aio/content/guide/i18n.md index 4a481d8131..4bcb42a408 100644 --- a/aio/content/guide/i18n.md +++ b/aio/content/guide/i18n.md @@ -682,7 +682,7 @@ You also need to instruct the AOT compiler to use your translation configuration * `i18nFormat`: the format of the translation file. * `i18nLocale`: the locale id. - +``` "configurations": { ... "fr": { @@ -694,17 +694,20 @@ You also need to instruct the AOT compiler to use your translation configuration ... } } - +``` -You then pass the configuration with the `ng serve` or `ng build` commands. The example below shows how to serve the French language file created in previous sections of this guide: +You then pass the configuration with the `ng serve` or `ng build` commands. +The example below shows how to serve the French language file created in previous +sections of this guide: ng serve --configuration=fr -For production builds, you define a separate `production-fr` build configuration in your `angular.json`. +For production builds, you define a separate `production-fr` build configuration in +your `angular.json`. - +``` "configurations": { ... "production-fr": { @@ -731,7 +734,7 @@ For production builds, you define a separate `production-fr` build configuration }, ... } - +``` The same configuration options can also be provided through the CLI with your existing `production` configuration. @@ -781,7 +784,7 @@ compilation, the app will fail to load. You specify the warning level in the `configurations` section your Angular CLI build configuration. The example below shows how to set the warning level to error: - +``` "configurations": { ... "fr": { @@ -789,7 +792,7 @@ You specify the warning level in the `configurations` section your Angular CLI b "i18nMissingTranslation": "error" } } - +``` If you use the JIT compiler, specify the warning level in the compiler config at bootstrap by adding the 'MissingTranslationStrategy' property. The example below shows how to set the warning level to diff --git a/aio/tools/examples/shared/boilerplate/cli/package.json b/aio/tools/examples/shared/boilerplate/cli/package.json index 5f906801e7..1ef3da3ca3 100644 --- a/aio/tools/examples/shared/boilerplate/cli/package.json +++ b/aio/tools/examples/shared/boilerplate/cli/package.json @@ -12,27 +12,27 @@ }, "private": true, "dependencies": { - "@angular/animations": "^6.0.0-rc.5", - "@angular/common": "^6.0.0-rc.5", - "@angular/compiler": "^6.0.0-rc.5", - "@angular/core": "^6.0.0-rc.5", - "@angular/forms": "^6.0.0-rc.5", - "@angular/http": "^6.0.0-rc.5", - "@angular/platform-browser": "^6.0.0-rc.5", - "@angular/platform-browser-dynamic": "^6.0.0-rc.5", - "@angular/router": "^6.0.0-rc.5", + "@angular/animations": "^6.0.0", + "@angular/common": "^6.0.0", + "@angular/compiler": "^6.0.0", + "@angular/core": "^6.0.0", + "@angular/forms": "^6.0.0", + "@angular/http": "^6.0.0", + "@angular/platform-browser": "^6.0.0", + "@angular/platform-browser-dynamic": "^6.0.0", + "@angular/router": "^6.0.0", "angular-in-memory-web-api": "^0.6.0", "core-js": "^2.5.4", - "rxjs": "6.0.0-uncanny-rc.7", + "rxjs": "^6.0.0", "web-animations-js": "^2.3.1", "zone.js": "^0.8.24" }, "devDependencies": { - "@angular/compiler-cli": "^6.0.0-rc.5", - "@angular-devkit/build-angular": "~0.5.0", + "@angular/compiler-cli": "^6.0.0", + "@angular-devkit/build-angular": "~0.6.0", "typescript": "~2.7.2", - "@angular/cli": "~6.0.0-rc.4", - "@angular/language-service": "^6.0.0-rc.5", + "@angular/cli": "^6.0.0", + "@angular/language-service": "^6.0.0", "@types/jasmine": "~2.8.6", "@types/jasminewd2": "~2.0.3", "@types/node": "~8.9.4", diff --git a/aio/tools/examples/shared/boilerplate/i18n/package.json b/aio/tools/examples/shared/boilerplate/i18n/package.json index 7870cc9daa..82de963571 100644 --- a/aio/tools/examples/shared/boilerplate/i18n/package.json +++ b/aio/tools/examples/shared/boilerplate/i18n/package.json @@ -15,25 +15,25 @@ }, "private": true, "dependencies": { - "@angular/animations": "^6.0.0-rc.5", - "@angular/common": "^6.0.0-rc.5", - "@angular/compiler": "^6.0.0-rc.5", - "@angular/core": "^6.0.0-rc.5", - "@angular/forms": "^6.0.0-rc.5", - "@angular/http": "^6.0.0-rc.5", - "@angular/platform-browser": "^6.0.0-rc.5", - "@angular/platform-browser-dynamic": "^6.0.0-rc.5", - "@angular/router": "^6.0.0-rc.5", + "@angular/animations": "^6.0.0", + "@angular/common": "^6.0.0", + "@angular/compiler": "^6.0.0", + "@angular/core": "^6.0.0", + "@angular/forms": "^6.0.0", + "@angular/http": "^6.0.0", + "@angular/platform-browser": "^6.0.0", + "@angular/platform-browser-dynamic": "^6.0.0", + "@angular/router": "^6.0.0", "core-js": "^2.5.4", - "rxjs": "6.0.0-uncanny-rc.7", + "rxjs": "^6.0.0", "zone.js": "^0.8.24" }, "devDependencies": { - "@angular/compiler-cli": "^6.0.0-rc.5", - "@angular-devkit/build-angular": "~0.5.0", - "@angular/cli": "~6.0.0-rc.4", - "@angular/language-service": "^6.0.0-rc.5", - "@angular/platform-server": "^6.0.0-rc.5", + "@angular/compiler-cli": "^6.0.0", + "@angular-devkit/build-angular": "~0.6.0", + "@angular/cli": "^6.0.0", + "@angular/language-service": "^6.0.0", + "@angular/platform-server": "^6.0.0", "@types/jasmine": "~2.8.6", "@types/jasminewd2": "~2.0.3", "@types/node": "~8.9.4", diff --git a/aio/tools/examples/shared/boilerplate/universal/package.json b/aio/tools/examples/shared/boilerplate/universal/package.json index 215e37ba93..5039c4bfc3 100644 --- a/aio/tools/examples/shared/boilerplate/universal/package.json +++ b/aio/tools/examples/shared/boilerplate/universal/package.json @@ -16,30 +16,30 @@ }, "private": true, "dependencies": { - "@angular/animations": "^6.0.0-rc.5", - "@angular/common": "^6.0.0-rc.5", - "@angular/compiler": "^6.0.0-rc.5", - "@angular/core": "^6.0.0-rc.5", - "@angular/forms": "^6.0.0-rc.5", - "@angular/http": "^6.0.0-rc.5", - "@angular/platform-browser": "^6.0.0-rc.5", - "@angular/platform-browser-dynamic": "^6.0.0-rc.5", - "@angular/router": "^6.0.0-rc.5", + "@angular/animations": "^6.0.0", + "@angular/common": "^6.0.0", + "@angular/compiler": "^6.0.0", + "@angular/core": "^6.0.0", + "@angular/forms": "^6.0.0", + "@angular/http": "^6.0.0", + "@angular/platform-browser": "^6.0.0", + "@angular/platform-browser-dynamic": "^6.0.0", + "@angular/router": "^6.0.0", "angular-in-memory-web-api": "^0.6.0", - "@nguniversal/common": "6.0.0-rc.2", - "@nguniversal/express-engine": "6.0.0-rc.2", - "@nguniversal/module-map-ngfactory-loader": "6.0.0-rc.2", + "@nguniversal/common": "^6.0.0", + "@nguniversal/express-engine": "^6.0.0", + "@nguniversal/module-map-ngfactory-loader": "^6.0.0", "core-js": "^2.5.4", - "rxjs": "6.0.0-uncanny-rc.7", + "rxjs": "^6.0.0", "web-animations-js": "^2.3.1", "zone.js": "^0.8.24" }, "devDependencies": { - "@angular/cli": "~6.0.0-rc.4", - "@angular/compiler-cli": "^6.0.0-rc.5", - "@angular/language-service": "^6.0.0-rc.5", - "@angular/platform-server": "^6.0.0-rc.5", - "@angular-devkit/build-angular": "~0.5.0", + "@angular/cli": "^6.0.0", + "@angular/compiler-cli": "^6.0.0", + "@angular/language-service": "^6.0.0", + "@angular/platform-server": "^6.0.0", + "@angular-devkit/build-angular": "~0.6.0", "@types/jasmine": "~2.8.6", "@types/jasminewd2": "~2.0.3", "@types/node": "~8.9.4", diff --git a/aio/tools/examples/shared/package.json b/aio/tools/examples/shared/package.json index 44a36e924d..90e2ff8e32 100644 --- a/aio/tools/examples/shared/package.json +++ b/aio/tools/examples/shared/package.json @@ -18,33 +18,33 @@ "author": "", "license": "MIT", "dependencies": { - "@angular/animations": "^6.0.0-rc.5", - "@angular/common": "^6.0.0-rc.5", - "@angular/compiler": "^6.0.0-rc.5", - "@angular/core": "^6.0.0-rc.5", - "@angular/forms": "^6.0.0-rc.5", - "@angular/http": "^6.0.0-rc.5", - "@angular/platform-browser": "^6.0.0-rc.5", - "@angular/platform-browser-dynamic": "^6.0.0-rc.5", - "@angular/router": "^6.0.0-rc.5", - "@angular/service-worker": "^6.0.0-rc.5", - "@angular/upgrade": "^6.0.0-rc.5", - "@nguniversal/express-engine": "6.0.0-rc.2", - "@nguniversal/module-map-ngfactory-loader": "6.0.0-rc.2", + "@angular/animations": "^6.0.0", + "@angular/common": "^6.0.0", + "@angular/compiler": "^6.0.0", + "@angular/core": "^6.0.0", + "@angular/forms": "^6.0.0", + "@angular/http": "^6.0.0", + "@angular/platform-browser": "^6.0.0", + "@angular/platform-browser-dynamic": "^6.0.0", + "@angular/router": "^6.0.0", + "@angular/service-worker": "^6.0.0", + "@angular/upgrade": "^6.0.0", + "@nguniversal/express-engine": "^6.0.0", + "@nguniversal/module-map-ngfactory-loader": "^6.0.0", "angular-in-memory-web-api": "^0.6.0", "core-js": "^2.5.4", "express": "^4.14.1", - "rxjs": "6.0.0-uncanny-rc.7", + "rxjs": "^6.0.0", "systemjs": "0.19.39", "web-animations-js": "^2.3.1", "zone.js": "^0.8.24" }, "devDependencies": { - "@angular/cli": "6.0.0-rc.4", - "@angular/compiler-cli": "^6.0.0-rc.5", - "@angular/language-service": "^6.0.0-rc.5", - "@angular/platform-server": "^6.0.0-rc.5", - "@angular-devkit/build-angular": "~0.5.0", + "@angular/cli": "^6.0.0", + "@angular/compiler-cli": "^6.0.0", + "@angular/language-service": "^6.0.0", + "@angular/platform-server": "^6.0.0", + "@angular-devkit/build-angular": "~0.6.0", "@types/angular": "^1.5.16", "@types/angular-animate": "^1.5.5", "@types/angular-cookies": "^1.4.2", diff --git a/aio/tools/examples/shared/yarn.lock b/aio/tools/examples/shared/yarn.lock index 890cb20c69..fcde5b4085 100644 --- a/aio/tools/examples/shared/yarn.lock +++ b/aio/tools/examples/shared/yarn.lock @@ -2,200 +2,195 @@ # yarn lockfile v1 -"@angular-devkit/architect@0.5.6": - version "0.5.6" - resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.5.6.tgz#758d1a725793641812279569edce3380f118da9e" +"@angular-devkit/architect@0.6.0": + version "0.6.0" + resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.6.0.tgz#622a933337c946ef85d646545cc4244272ccb402" dependencies: - "@angular-devkit/core" "0.5.6" - rxjs "^6.0.0-beta.3" + "@angular-devkit/core" "0.6.0" + rxjs "^6.0.0" -"@angular-devkit/build-angular@~0.5.0": - version "0.5.6" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-0.5.6.tgz#14c53c32653d153886c00911af6d62fceb7419de" +"@angular-devkit/build-angular@~0.6.0": + version "0.6.0" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-0.6.0.tgz#f5757f80fc402458e6b5eae1578bbc2a1af44ebe" dependencies: - "@angular-devkit/architect" "0.5.6" - "@angular-devkit/build-optimizer" "0.5.6" - "@angular-devkit/core" "0.5.6" - "@ngtools/webpack" "6.0.0-rc.4" - ajv "^6.0.0" + "@angular-devkit/architect" "0.6.0" + "@angular-devkit/build-optimizer" "0.6.0" + "@angular-devkit/core" "0.6.0" + "@ngtools/webpack" "6.0.0" + ajv "~6.4.0" autoprefixer "^8.1.0" cache-loader "^1.2.2" chalk "~2.2.2" - circular-dependency-plugin "^5.0.0" + circular-dependency-plugin "^5.0.2" clean-css "^4.1.11" - copy-webpack-plugin "^4.5.0" + copy-webpack-plugin "^4.5.1" file-loader "^1.1.11" glob "^7.0.3" html-webpack-plugin "^3.0.6" istanbul "^0.4.5" istanbul-instrumenter-loader "^3.0.1" karma-source-map-support "^1.2.0" - less "^3.0.1" + less "^3.0.2" less-loader "^4.1.0" - license-webpack-plugin "^1.2.3" + license-webpack-plugin "^1.3.1" lodash "^4.17.4" memory-fs "^0.4.1" - mini-css-extract-plugin "~0.3.0" + mini-css-extract-plugin "~0.4.0" minimatch "^3.0.4" - node-sass "^4.7.2" + node-sass "^4.8.3" opn "^5.1.0" parse5 "^4.0.0" portfinder "^1.0.13" postcss "^6.0.19" postcss-import "^11.1.0" - postcss-loader "^2.1.1" + postcss-loader "^2.1.4" postcss-url "^7.3.1" raw-loader "^0.5.1" - request "^2.83.0" resolve "^1.5.0" - rxjs "^6.0.0-beta.3" - sass-loader "^6.0.7" + rxjs "^6.0.0" + sass-loader "^7.0.1" silent-error "^1.1.0" source-map-support "^0.5.0" stats-webpack-plugin "^0.6.2" - style-loader "^0.20.2" + style-loader "^0.21.0" stylus "^0.54.5" stylus-loader "^3.0.2" tree-kill "^1.2.0" - uglifyjs-webpack-plugin "^1.2.2" + uglifyjs-webpack-plugin "^1.2.5" url-loader "^1.0.1" - webpack "~4.5.0" - webpack-dev-middleware "^3.1.0" - webpack-dev-server "^3.1.1" + webpack "~4.6.0" + webpack-dev-middleware "^3.1.3" + webpack-dev-server "^3.1.4" webpack-merge "^4.1.2" webpack-sources "^1.1.0" webpack-subresource-integrity "^1.1.0-rc.4" -"@angular-devkit/build-optimizer@0.5.6": - version "0.5.6" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.5.6.tgz#c581489ccf5757800ac23d44052934cbcc6bafed" +"@angular-devkit/build-optimizer@0.6.0": + version "0.6.0" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.6.0.tgz#150a76155b473dea17327a176d18245a2da1c13e" dependencies: loader-utils "^1.1.0" source-map "^0.5.6" typescript "~2.7.2" webpack-sources "^1.1.0" -"@angular-devkit/core@0.5.6": - version "0.5.6" - resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-0.5.6.tgz#f7c9d550c86e924f2d75fe728e17e280be63d5ad" +"@angular-devkit/core@0.6.0": + version "0.6.0" + resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-0.6.0.tgz#d1a7275ff0f93de5cf007c4a549d1ebd00776fd0" dependencies: - ajv "~5.5.1" - chokidar "^1.7.0" - rxjs "^6.0.0-beta.3" + ajv "~6.4.0" + chokidar "^2.0.3" + rxjs "^6.0.0" source-map "^0.5.6" -"@angular-devkit/schematics@0.5.6": - version "0.5.6" - resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-0.5.6.tgz#25ecacc619579a9e54be854e28ae302b116f47d0" +"@angular-devkit/schematics@0.6.0": + version "0.6.0" + resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-0.6.0.tgz#0117dc7d5905b053df4f2918e2e073efd1091f5c" dependencies: - "@angular-devkit/core" "0.5.6" - "@ngtools/json-schema" "^1.1.0" - rxjs "^6.0.0-beta.3" + "@angular-devkit/core" "0.6.0" + rxjs "^6.0.0" -"@angular/animations@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-6.0.0-rc.5.tgz#4103f620f52023c0b26c741158276bdcc9c1a451" +"@angular/animations@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-6.0.0.tgz#cfc825dbfdf33bf3bf75962d1e12495aed5e3c32" dependencies: tslib "^1.9.0" -"@angular/cli@6.0.0-rc.4": - version "6.0.0-rc.4" - resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-6.0.0-rc.4.tgz#f3cffcfdb84f7a187eb2d10bdd5831e397c5a00c" +"@angular/cli@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-6.0.0.tgz#346b356775ddf8cdb8a9a5095b0663878eca3486" dependencies: - "@angular-devkit/architect" "0.5.6" - "@angular-devkit/core" "0.5.6" - "@angular-devkit/schematics" "0.5.6" - "@schematics/angular" "0.5.6" - "@schematics/update" "0.5.6" - chalk "~2.2.0" - fs-extra "^4.0.0" - node-modules-path "^1.0.0" + "@angular-devkit/architect" "0.6.0" + "@angular-devkit/core" "0.6.0" + "@angular-devkit/schematics" "0.6.0" + "@schematics/angular" "0.6.0" + "@schematics/update" "0.6.0" opn "~5.1.0" resolve "^1.1.7" - rxjs "^6.0.0-turbo-rc.4" + rxjs "^6.0.0" semver "^5.1.0" silent-error "^1.0.0" symbol-observable "^1.2.0" - yargs-parser "^9.0.2" + yargs-parser "^10.0.0" -"@angular/common@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/common/-/common-6.0.0-rc.5.tgz#eb31379f187b60ea9724595bc29dff7439c0efcc" +"@angular/common@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/common/-/common-6.0.0.tgz#ca3b6b6b96837fe048861da897c31991aa04954f" dependencies: tslib "^1.9.0" -"@angular/compiler-cli@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-6.0.0-rc.5.tgz#1ecb3702532def6e15051253ecd7e98467cf5842" +"@angular/compiler-cli@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-6.0.0.tgz#be50277faaa5ac08f3002c2c8cb8c39d220c76d5" dependencies: chokidar "^1.4.2" minimist "^1.2.0" reflect-metadata "^0.1.2" tsickle "^0.27.2" -"@angular/compiler@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-6.0.0-rc.5.tgz#6d163ff459c2aa3134efd3d2f187cff08a7aeabf" +"@angular/compiler@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-6.0.0.tgz#9092a0f02f33dd1108276ab93cc48142e36a1e95" dependencies: tslib "^1.9.0" -"@angular/core@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/core/-/core-6.0.0-rc.5.tgz#33b1a6b4d0daaf1ec034fe2404a6009607f00cbd" +"@angular/core@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/core/-/core-6.0.0.tgz#785cc8a37b7fb784a6b7dcbd0984abb4f10e5dfe" dependencies: tslib "^1.9.0" -"@angular/forms@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-6.0.0-rc.5.tgz#9594f2c2423e46aa345000097ce1f8e6e6569fc5" +"@angular/forms@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-6.0.0.tgz#436e2df39dc57db124da5a5c02bc63909fdf7046" dependencies: tslib "^1.9.0" -"@angular/http@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/http/-/http-6.0.0-rc.5.tgz#40dad79b77d463bd325263020e79e9512dc085eb" +"@angular/http@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/http/-/http-6.0.0.tgz#f409e35cd2f4990b43a37beab915ffdcd9c7c992" dependencies: tslib "^1.9.0" -"@angular/language-service@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/language-service/-/language-service-6.0.0-rc.5.tgz#19c24928aba82c6175e833d5fbeb6f82c58d72c0" +"@angular/language-service@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/language-service/-/language-service-6.0.0.tgz#85bf577fd7f45eff13128d4f5f0125078d610aec" -"@angular/platform-browser-dynamic@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-6.0.0-rc.5.tgz#2f7fb42b10f2fd769d209dfed6b50b89590851d8" +"@angular/platform-browser-dynamic@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-6.0.0.tgz#66a34b65136446cb3ec39362fd6d2dbb5482ba70" dependencies: tslib "^1.9.0" -"@angular/platform-browser@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-6.0.0-rc.5.tgz#492bc951339ff170eb057871626476b34e65227f" +"@angular/platform-browser@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-6.0.0.tgz#848b687ea46786483fddcdbbbd17b29c7adcc768" dependencies: tslib "^1.9.0" -"@angular/platform-server@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-6.0.0-rc.5.tgz#b8910231cc4c9891a9e2ce3ba35ebb7db84c9969" +"@angular/platform-server@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-6.0.0.tgz#482878cc538a80caa3962e9376e4225b20c2a4bd" dependencies: domino "^2.0.1" tslib "^1.9.0" xhr2 "^0.1.4" -"@angular/router@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/router/-/router-6.0.0-rc.5.tgz#b37f93cd81738b7a64697d1804c87c880d7bb636" +"@angular/router@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/router/-/router-6.0.0.tgz#09a5c6f6220084c3575df81e8b36cbe9fff10d1f" dependencies: tslib "^1.9.0" -"@angular/service-worker@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/service-worker/-/service-worker-6.0.0-rc.5.tgz#f55f89a3012ae6e0bca21463a8fd538ae3425eac" +"@angular/service-worker@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/service-worker/-/service-worker-6.0.0.tgz#35a187554d33e05911544080fafc281ff1b322e0" dependencies: tslib "^1.9.0" -"@angular/upgrade@^6.0.0-rc.5": - version "6.0.0-rc.5" - resolved "https://registry.yarnpkg.com/@angular/upgrade/-/upgrade-6.0.0-rc.5.tgz#f4b35f8bcad8c77a8d3eb83af9418054e3a7b740" +"@angular/upgrade@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@angular/upgrade/-/upgrade-6.0.0.tgz#932e39709b17a455018c3dfe63a5b8e794027f05" dependencies: tslib "^1.9.0" @@ -206,41 +201,38 @@ call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" -"@ngtools/json-schema@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@ngtools/json-schema/-/json-schema-1.1.0.tgz#c3a0c544d62392acc2813a42c8a0dc6f58f86922" - -"@ngtools/webpack@6.0.0-rc.4": - version "6.0.0-rc.4" - resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-6.0.0-rc.4.tgz#683596658ee4592f19ad6075a9166f1afdb05cd9" +"@ngtools/webpack@6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-6.0.0.tgz#e160cccd85823e9b01ee7bc5156a02510a323a34" dependencies: - "@angular-devkit/core" "0.5.6" + "@angular-devkit/core" "0.6.0" tree-kill "^1.0.0" webpack-sources "^1.1.0" -"@nguniversal/express-engine@6.0.0-rc.2": - version "6.0.0-rc.2" - resolved "https://registry.yarnpkg.com/@nguniversal/express-engine/-/express-engine-6.0.0-rc.2.tgz#ca4a576d62614e04aea8a03f603b7e1235dff033" +"@nguniversal/express-engine@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@nguniversal/express-engine/-/express-engine-6.0.0.tgz#f8bc7b5e940afb1ffdbdcb1bb22665d440ea0b0b" -"@nguniversal/module-map-ngfactory-loader@6.0.0-rc.2": - version "6.0.0-rc.2" - resolved "https://registry.yarnpkg.com/@nguniversal/module-map-ngfactory-loader/-/module-map-ngfactory-loader-6.0.0-rc.2.tgz#c3cdb60a7a3da180fc90e1ca39f22367427fb4d8" +"@nguniversal/module-map-ngfactory-loader@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@nguniversal/module-map-ngfactory-loader/-/module-map-ngfactory-loader-6.0.0.tgz#0dd26c3f1c26d17bb21b8dfc0da53d82b7f11028" -"@schematics/angular@0.5.6": - version "0.5.6" - resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-0.5.6.tgz#c2b26037855c9a338d20bb8ace50743cb7a5af24" +"@schematics/angular@0.6.0": + version "0.6.0" + resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-0.6.0.tgz#d7589c50f80ef089f7fba526ed9becefb187b6a2" dependencies: - "@angular-devkit/core" "0.5.6" - "@angular-devkit/schematics" "0.5.6" + "@angular-devkit/core" "0.6.0" + "@angular-devkit/schematics" "0.6.0" typescript ">=2.6.2 <2.8" -"@schematics/update@0.5.6": - version "0.5.6" - resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.5.6.tgz#ffba0507eaccd78bd892480edf11945734d59547" +"@schematics/update@0.6.0": + version "0.6.0" + resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.6.0.tgz#1a5f75a5a02de85cc4b4bd4fa68dd53ddc95ba30" dependencies: - "@angular-devkit/core" "0.5.6" - "@angular-devkit/schematics" "0.5.6" - rxjs "^6.0.0-beta.3" + "@angular-devkit/core" "0.6.0" + "@angular-devkit/schematics" "0.6.0" + npm-registry-client "^8.5.1" + rxjs "^6.0.0" semver "^5.3.0" semver-intersect "^1.1.2" @@ -429,7 +421,7 @@ ajv@^5.0.0, ajv@^5.1.0: fast-json-stable-stringify "^2.0.0" json-schema-traverse "^0.3.0" -ajv@^6.0.0, ajv@^6.1.0: +ajv@^6.1.0, ajv@~6.4.0: version "6.4.0" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.4.0.tgz#d3aff78e9277549771daf0164cff48482b754fc6" dependencies: @@ -438,15 +430,6 @@ ajv@^6.0.0, ajv@^6.1.0: json-schema-traverse "^0.3.0" uri-js "^3.0.2" -ajv@~5.5.1: - version "5.5.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" - dependencies: - co "^4.6.0" - fast-deep-equal "^1.0.0" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.3.0" - align-text@^0.1.1, align-text@^0.1.3: version "0.1.4" resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" @@ -1677,6 +1660,10 @@ btoa@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/btoa/-/btoa-1.1.2.tgz#3e40b81663f81d2dd6596a4cb714a8dc16cfabe0" +buffer-from@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" + buffer-indexof@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" @@ -1701,6 +1688,10 @@ builtin-status-codes@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" +builtins@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" + bytes@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" @@ -1884,7 +1875,7 @@ chalk@~0.4.0: has-color "~0.1.0" strip-ansi "~0.1.0" -chalk@~2.2.0, chalk@~2.2.2: +chalk@~2.2.2: version "2.2.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.2.2.tgz#4403f5cf18f35c05f51fbdf152bf588f956cf7cb" dependencies: @@ -1896,7 +1887,7 @@ chardet@^0.4.0: version "0.4.2" resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" -chokidar@1.7.0, chokidar@^1.4.1, chokidar@^1.4.2, chokidar@^1.7.0: +chokidar@1.7.0, chokidar@^1.4.1, chokidar@^1.4.2: version "1.7.0" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" dependencies: @@ -1928,7 +1919,7 @@ chokidar@^2.0.0: optionalDependencies: fsevents "^1.0.0" -chokidar@^2.0.2: +chokidar@^2.0.2, chokidar@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.3.tgz#dcbd4f6cbb2a55b4799ba8a840ac527e5f4b1176" dependencies: @@ -1961,7 +1952,7 @@ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: inherits "^2.0.1" safe-buffer "^5.0.1" -circular-dependency-plugin@^5.0.0: +circular-dependency-plugin@^5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/circular-dependency-plugin/-/circular-dependency-plugin-5.0.2.tgz#da168c0b37e7b43563fb9f912c1c007c213389ef" @@ -2239,6 +2230,15 @@ concat-stream@1.6.0, concat-stream@^1.5.0: readable-stream "^2.2.2" typedarray "^0.0.6" +concat-stream@^1.5.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + concurrently@^3.0.0: version "3.5.0" resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-3.5.0.tgz#8cf1b7707a6916a78a4ff5b77bb04dec54b379b2" @@ -2354,7 +2354,7 @@ copy-webpack-plugin@^4.0.1: minimatch "^3.0.4" node-dir "^0.1.10" -copy-webpack-plugin@^4.5.0: +copy-webpack-plugin@^4.5.1: version "4.5.1" resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-4.5.1.tgz#fc4f68f4add837cc5e13d111b20715793225d29c" dependencies: @@ -3676,7 +3676,7 @@ fs-extra@3.0.1: jsonfile "^3.0.0" universalify "^0.1.0" -fs-extra@^4.0.0, fs-extra@^4.0.2: +fs-extra@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.2.tgz#f91704c53d1b461f893452b0c307d9997647ab6b" dependencies: @@ -4224,6 +4224,10 @@ hosted-git-info@^2.1.4: version "2.5.0" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" +hosted-git-info@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" + hpack.js@^2.1.6: version "2.1.6" resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" @@ -5303,9 +5307,9 @@ less-loader@^4.1.0: loader-utils "^1.1.0" pify "^3.0.0" -less@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/less/-/less-3.0.1.tgz#ba2fea24a5632ccb8c84230d6043c0bf91855e37" +less@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/less/-/less-3.0.2.tgz#1bcb9813bb6090c884ac142f02c633bd42931844" optionalDependencies: errno "^0.1.1" graceful-fs "^4.1.2" @@ -5313,7 +5317,7 @@ less@^3.0.1: mime "^1.4.1" mkdirp "^0.5.0" promise "^7.1.1" - request "2.81.0" + request "^2.83.0" source-map "^0.5.3" levn@~0.3.0: @@ -5323,7 +5327,7 @@ levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" -license-webpack-plugin@^1.2.3: +license-webpack-plugin@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/license-webpack-plugin/-/license-webpack-plugin-1.3.1.tgz#688b76472188ef597918b7cae3eec7dc2fa5a0e8" dependencies: @@ -5797,9 +5801,9 @@ mimic-response@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.0.tgz#df3d3652a73fded6b9b0b24146e6fd052353458e" -mini-css-extract-plugin@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.3.0.tgz#f8dc03abb3a8663f1a431143e232fb47fb4d9318" +mini-css-extract-plugin@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.0.tgz#ff3bf08bee96e618e177c16ca6131bfecef707f9" dependencies: loader-utils "^1.1.0" webpack-sources "^1.1.0" @@ -5938,7 +5942,11 @@ mute-stream@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" -nan@^2.3.0, nan@^2.3.2: +nan@^2.10.0: + version "2.10.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" + +nan@^2.3.0: version "2.7.0" resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" @@ -6059,10 +6067,6 @@ node-libs-browser@^2.0.0: util "^0.10.3" vm-browserify "0.0.4" -node-modules-path@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/node-modules-path/-/node-modules-path-1.0.1.tgz#40096b08ce7ad0ea14680863af449c7c75a5d1c8" - node-pre-gyp@^0.6.36: version "0.6.38" resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" @@ -6094,9 +6098,9 @@ node-pre-gyp@^0.6.39: tar "^2.2.1" tar-pack "^3.4.0" -node-sass@^4.7.2: - version "4.7.2" - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.7.2.tgz#9366778ba1469eb01438a9e8592f4262bcb6794e" +node-sass@^4.8.3: + version "4.9.0" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.9.0.tgz#d1b8aa855d98ed684d6848db929a20771cc2ae52" dependencies: async-foreach "^0.1.3" chalk "^1.1.1" @@ -6110,7 +6114,7 @@ node-sass@^4.7.2: lodash.mergewith "^4.6.0" meow "^3.7.0" mkdirp "^0.5.1" - nan "^2.3.2" + nan "^2.10.0" node-gyp "^3.3.1" npmlog "^4.0.0" request "~2.79.0" @@ -6138,7 +6142,7 @@ nopt@^4.0.1: abbrev "1" osenv "^0.1.4" -normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, "normalize-package-data@~1.0.1 || ^2.0.0": version "2.4.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" dependencies: @@ -6174,13 +6178,40 @@ normalize-url@^1.4.0: query-string "^4.1.0" sort-keys "^1.0.0" +"npm-package-arg@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0": + version "6.1.0" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.0.tgz#15ae1e2758a5027efb4c250554b85a737db7fcc1" + dependencies: + hosted-git-info "^2.6.0" + osenv "^0.1.5" + semver "^5.5.0" + validate-npm-package-name "^3.0.0" + +npm-registry-client@^8.5.1: + version "8.5.1" + resolved "https://registry.yarnpkg.com/npm-registry-client/-/npm-registry-client-8.5.1.tgz#8115809c0a4b40938b8a109b8ea74d26c6f5d7f1" + dependencies: + concat-stream "^1.5.2" + graceful-fs "^4.1.6" + normalize-package-data "~1.0.1 || ^2.0.0" + npm-package-arg "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" + once "^1.3.3" + request "^2.74.0" + retry "^0.10.0" + safe-buffer "^5.1.1" + semver "2 >=2.2.1 || 3.x || 4 || 5" + slide "^1.1.3" + ssri "^5.2.4" + optionalDependencies: + npmlog "2 || ^3.1.0 || ^4.0.0" + npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" dependencies: path-key "^2.0.0" -"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2: +"npmlog@0 || 1 || 2 || 3 || 4", "npmlog@2 || ^3.1.0 || ^4.0.0", npmlog@^4.0.0, npmlog@^4.0.2: version "4.1.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" dependencies: @@ -6390,6 +6421,13 @@ osenv@0, osenv@^0.1.4: os-homedir "^1.0.0" os-tmpdir "^1.0.0" +osenv@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + p-cancelable@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" @@ -6775,9 +6813,9 @@ postcss-load-plugins@^2.3.0: cosmiconfig "^2.1.1" object-assign "^4.1.0" -postcss-loader@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-2.1.3.tgz#eb210da734e475a244f76ccd61f9860f5bb3ee09" +postcss-loader@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-2.1.4.tgz#f44a6390e03c84108b2b2063182d1a1011b2ce76" dependencies: loader-utils "^1.1.0" postcss "^6.0.0" @@ -7561,7 +7599,7 @@ request@2.81.0, request@~2.81.0: tunnel-agent "^0.6.0" uuid "^3.0.0" -request@^2.83.0: +request@^2.74.0, request@^2.83.0: version "2.85.0" resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa" dependencies: @@ -7697,6 +7735,10 @@ ret@~0.1.10: version "0.1.15" resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" +retry@^0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" + right-align@^0.1.1: version "0.1.3" resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" @@ -7787,21 +7829,15 @@ rx@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" -rxjs@6.0.0-uncanny-rc.7: - version "6.0.0-uncanny-rc.7" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.0.0-uncanny-rc.7.tgz#e5d6ebe2c538c583bf4b3600b60112d64a7a6991" - dependencies: - tslib "^1.9.0" - rxjs@^5.4.2, rxjs@^5.5.2: version "5.5.10" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.10.tgz#fde02d7a614f6c8683d0d1957827f492e09db045" dependencies: symbol-observable "1.0.1" -rxjs@^6.0.0-beta.3, rxjs@^6.0.0-turbo-rc.4: - version "6.0.0-turbo-rc.4" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.0.0-turbo-rc.4.tgz#5995dab91914f03ee4a68d923678333ae626d2ec" +rxjs@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.1.0.tgz#833447de4e4f6427b9cec3e5eb9f56415cd28315" dependencies: tslib "^1.9.0" @@ -7828,9 +7864,9 @@ sass-graph@^2.2.4: scss-tokenizer "^0.2.3" yargs "^7.0.0" -sass-loader@^6.0.7: - version "6.0.7" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-6.0.7.tgz#dd2fdb3e7eeff4a53f35ba6ac408715488353d00" +sass-loader@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.0.1.tgz#fd937259ccba3a9cfe0d5f8a98746d48adfcc261" dependencies: clone-deep "^2.0.1" loader-utils "^1.0.1" @@ -7862,7 +7898,7 @@ schema-utils@^0.3.0: dependencies: ajv "^5.0.0" -schema-utils@^0.4.0, schema-utils@^0.4.3, schema-utils@^0.4.5: +schema-utils@^0.4.0, schema-utils@^0.4.3, schema-utils@^0.4.4, schema-utils@^0.4.5: version "0.4.5" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.5.tgz#21836f0608aac17b78f9e3e24daff14a5ca13a3e" dependencies: @@ -7922,14 +7958,14 @@ semver-intersect@^1.1.2: dependencies: semver "^5.0.0" +"semver@2 >=2.2.1 || 3.x || 4 || 5", semver@^5.0.0, semver@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" + "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.1.0, semver@^5.3.0: version "5.4.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" -semver@^5.0.0, semver@^5.5.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" - semver@~4.3.3: version "4.3.6" resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" @@ -8127,7 +8163,7 @@ slice-ansi@0.0.4: version "0.0.4" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" -slide@^1.1.5: +slide@^1.1.3, slide@^1.1.5: version "1.1.6" resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" @@ -8580,9 +8616,9 @@ strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" -style-loader@^0.20.2: - version "0.20.3" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.20.3.tgz#ebef06b89dec491bcb1fdb3452e913a6fd1c10c4" +style-loader@^0.21.0: + version "0.21.0" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.21.0.tgz#68c52e5eb2afc9ca92b6274be277ee59aea3a852" dependencies: loader-utils "^1.1.0" schema-utils "^0.4.5" @@ -8965,7 +9001,7 @@ uglify-to-browserify@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" -uglifyjs-webpack-plugin@^1.2.2, uglifyjs-webpack-plugin@^1.2.4: +uglifyjs-webpack-plugin@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.4.tgz#5eec941b2e9b8538be0a20fc6eda25b14c7c1043" dependencies: @@ -8978,6 +9014,19 @@ uglifyjs-webpack-plugin@^1.2.2, uglifyjs-webpack-plugin@^1.2.4: webpack-sources "^1.1.0" worker-farm "^1.5.2" +uglifyjs-webpack-plugin@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.5.tgz#2ef8387c8f1a903ec5e44fa36f9f3cbdcea67641" + dependencies: + cacache "^10.0.4" + find-cache-dir "^1.0.0" + schema-utils "^0.4.5" + serialize-javascript "^1.4.0" + source-map "^0.6.1" + uglify-es "^3.3.4" + webpack-sources "^1.1.0" + worker-farm "^1.5.2" + uid-number@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" @@ -9196,6 +9245,12 @@ validate-npm-package-license@^3.0.1: spdx-correct "~1.0.0" spdx-expression-parse "~1.0.0" +validate-npm-package-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" + dependencies: + builtins "^1.0.3" + vary@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" @@ -9341,9 +9396,9 @@ webpack-core@^0.6.8: source-list-map "~0.1.7" source-map "~0.4.1" -webpack-dev-middleware@3.1.2, webpack-dev-middleware@^3.1.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.1.2.tgz#be4d0c36a4fa7d69d6904093418514caa9df3a40" +webpack-dev-middleware@3.1.3, webpack-dev-middleware@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.1.3.tgz#8b32aa43da9ae79368c1bf1183f2b6cf5e1f39ed" dependencies: loud-rejection "^1.6.0" memory-fs "~0.4.1" @@ -9353,9 +9408,9 @@ webpack-dev-middleware@3.1.2, webpack-dev-middleware@^3.1.0: url-join "^4.0.0" webpack-log "^1.0.1" -webpack-dev-server@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.1.3.tgz#5cecfd8a9d60c4638284813f1cf9562f04e5c1c5" +webpack-dev-server@^3.1.4: + version "3.1.4" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.1.4.tgz#9a08d13c4addd1e3b6d8ace116e86715094ad5b4" dependencies: ansi-html "0.0.7" array-includes "^3.0.3" @@ -9382,7 +9437,7 @@ webpack-dev-server@^3.1.1: spdy "^3.4.1" strip-ansi "^3.0.0" supports-color "^5.1.0" - webpack-dev-middleware "3.1.2" + webpack-dev-middleware "3.1.3" webpack-log "^1.1.2" yargs "11.0.0" @@ -9428,9 +9483,9 @@ webpack-subresource-integrity@^1.1.0-rc.4: dependencies: webpack-core "^0.6.8" -webpack@~4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.5.0.tgz#1e6f71e148ead02be265ff2879c9cd6bb30b8848" +webpack@~4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.6.0.tgz#363eafa733710eb0ed28c512b2b9b9f5fb01e69b" dependencies: acorn "^5.0.0" acorn-dynamic-import "^3.0.0" @@ -9446,7 +9501,7 @@ webpack@~4.5.0: mkdirp "~0.5.0" neo-async "^2.5.0" node-libs-browser "^2.0.0" - schema-utils "^0.4.2" + schema-utils "^0.4.4" tapable "^1.0.0" uglifyjs-webpack-plugin "^1.2.4" watchpack "^1.5.0" @@ -9636,6 +9691,12 @@ yallist@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" +yargs-parser@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.0.0.tgz#c737c93de2567657750cb1f2c00be639fd19c994" + dependencies: + camelcase "^4.1.0" + yargs-parser@^4.1.0: version "4.2.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"