build: update lockfiles for integration projects (#33968)
In the `integration_test` CircleCI job, we run `yarn install` on all projects in the `integration/` directory. If a project has no lockfile or if the lockfile is out-of-sync with the corresponding `package.json` file, then the installed dependency versions are no longer pinned, which can result in different versions being installed between different runs of the same job (if, for example, a new version is released for a package) and breaks hermeticity. This could be prevented by using the `--frozen-lockfile` option with `yarn install`, but this is not possible with the current setup, because yarn needs to be able to install the locally built Angular packages, whose checksums will be different from the ones in the lockfile. Therefore, we have to manually ensure that the lockfiles remain in-sync with the corresponding `package.json` files for the rest of the dependencies. For example, previously, [cli-hello-world-lazy/yarn.lock][1] had an entry for `@angular-devkit/build-angular@0.900.0-next.9` (pinned to `0.900.0-next.9`), but [cli-hello-world-lazy/package.json][2] specified the `@angular-devkit/build-angular` version as `^0.900.0-rc.0` (note the leading caret). As a result, since the version in the lock file does not much the one in `package.json`, the lockfile is ignored and the latest available version that matches `^0.900.0-rc.0` is installed. This, for example, started causing unrelated CI failures ([example][3]), when `@angular-devkit/build-angular@9.0.0-rc.3` was released with a size improvement. This commit ensures that all integration projects have a lockfile and that lockfiles are up-to-date (with the current `package.json` files). [1]: https://github.com/angular/angular/blob/fc2f6b845/integration/cli-hello-world-lazy/yarn.lock#L13 [2]: https://github.com/angular/angular/blob/fc2f6b845/integration/cli-hello-world-lazy/package.json#L26 [3]: https://circleci.com/gh/angular/angular/535959#tests/containers/2 PR Close #33968
This commit is contained in:
parent
49804fe017
commit
7f0d7f4d12
@ -1,16 +1,18 @@
|
|||||||
# Integration tests for Angular
|
# Integration tests for Angular
|
||||||
|
|
||||||
This directory contains end-to-end tests for Angular. Each directory is a self-contained application that exactly mimics how a user might expect Angular
|
This directory contains end-to-end tests for Angular. Each directory is a self-contained application
|
||||||
to work, so they allow high-fidelity reproductions of real-world issues.
|
that exactly mimics how a user might expect Angular to work, so they allow high-fidelity
|
||||||
|
reproductions of real-world issues.
|
||||||
|
|
||||||
For this to work, we first build the Angular distribution just like we would
|
For this to work, we first build the Angular distribution just like we would publish it to npm, then
|
||||||
publish it to npm, then install the distribution into each app.
|
install the distribution into each app.
|
||||||
|
|
||||||
To test Angular CLI applications, we use the integration test `cli-hello-world`.
|
To test Angular CLI applications, we use the `cli-hello-world-*` integration tests.
|
||||||
When a significant change is released in the CLI, the application should be updated with `ng update`:
|
When a significant change is released in the CLI, the applications should be updated with
|
||||||
|
`ng update`:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ cd integration/cli-hello-world
|
$ cd integration/cli-hello-world[-*]
|
||||||
$ yarn install
|
$ yarn install
|
||||||
$ yarn ng update @angular/cli @angular-devkit/build-angular
|
$ yarn ng update @angular/cli @angular-devkit/build-angular
|
||||||
# yarn build
|
# yarn build
|
||||||
@ -38,12 +40,19 @@ This means that the test should be started by test script, like
|
|||||||
"scripts": {"test": "runProgramA && assertResultIsGood"}
|
"scripts": {"test": "runProgramA && assertResultIsGood"}
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that the `package.json` file uses a special `file://../../dist` scheme
|
Note that the `package.json` file uses a special `file:../../dist` scheme to reference the Angular
|
||||||
to reference the Angular packages, so that the locally-built Angular
|
packages, so that the locally-built Angular is installed into the test app.
|
||||||
is installed into the test app.
|
|
||||||
|
Also, beware of floating (non-locked) dependencies. If in doubt, you can install the package
|
||||||
|
directly from `file:../../node_modules`.
|
||||||
|
|
||||||
|
> WARNING
|
||||||
|
>
|
||||||
|
> Always ensure that `yarn.lock` files are up-to-date with the corresponding `package.json` files
|
||||||
|
> (wrt the non-local dependencies - i.e. dependencies whose versions do not start with `file:`).
|
||||||
|
>
|
||||||
|
> You can update a `yarn.lock` file by running `yarn install` in the project subdirectory.
|
||||||
|
|
||||||
Also, beware of floating (non-locked) dependencies. If in doubt
|
|
||||||
you can install the package directly from `file:../../node_modules`.
|
|
||||||
|
|
||||||
## Running integration tests
|
## Running integration tests
|
||||||
|
|
||||||
@ -51,5 +60,5 @@ you can install the package directly from `file:../../node_modules`.
|
|||||||
$ ./integration/run_tests.sh
|
$ ./integration/run_tests.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
The test runner will first re-build any stale npm packages, then `cd` into each
|
The test runner will first re-build any stale npm packages, then `cd` into each subdirectory to
|
||||||
subdirectory to execute the test.
|
execute the test.
|
||||||
|
@ -2,18 +2,18 @@
|
|||||||
# yarn lockfile v1
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
"@angular-devkit/architect@0.900.0-next.15":
|
"@angular-devkit/architect@0.900.0-rc.3":
|
||||||
version "0.900.0-next.15"
|
version "0.900.0-rc.3"
|
||||||
resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.900.0-next.15.tgz#d7e2b929a4d78a2318adfdbf67b4167ea59fe5d4"
|
resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.900.0-rc.3.tgz#e01d0296153624d6ef073650484d0d8063bb2a42"
|
||||||
integrity sha512-hNcguzc/fojhAWUJHA0K0VxdUY68auDMs2Jfmlxywgv2r6WJuzpdqn+ZfOdQz6mPKVEWkaRtR3and80oJQAc5w==
|
integrity sha512-QVD/iL3CxG6nNFveYN7NhsNLir/SmgVGrsPt7FtKJq2tWxmBEsU3d3zYGYNtFNv/WshHZ7K6UFg+VsRpqnQTtQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@angular-devkit/core" "9.0.0-next.15"
|
"@angular-devkit/core" "9.0.0-rc.3"
|
||||||
rxjs "6.5.3"
|
rxjs "6.5.3"
|
||||||
|
|
||||||
"@angular-devkit/core@9.0.0-next.15":
|
"@angular-devkit/core@9.0.0-rc.3":
|
||||||
version "9.0.0-next.15"
|
version "9.0.0-rc.3"
|
||||||
resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-9.0.0-next.15.tgz#5f640139a7afa03af6011a768d84e702372eb045"
|
resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-9.0.0-rc.3.tgz#42703073d0f83eee9b319d59d5f61ef407f0ff13"
|
||||||
integrity sha512-wCx6ec5eI9tyTQLNdnLXJ2NNH8Rhey6Yb8I8nAlymEHxZG8d/OvpNRq3GklwVM+I75cLDguAbWMmWGbD02tR3w==
|
integrity sha512-x9x4yj0HMzg8rAIgxEPrefjMXB0GOlgzzbHxgcB+qxIP/feASzhnB28OyXSCa4Sgv3er3Jd5wzV/P3QYHKLeoQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
ajv "6.10.2"
|
ajv "6.10.2"
|
||||||
fast-json-stable-stringify "2.0.0"
|
fast-json-stable-stringify "2.0.0"
|
||||||
@ -21,29 +21,30 @@
|
|||||||
rxjs "6.5.3"
|
rxjs "6.5.3"
|
||||||
source-map "0.7.3"
|
source-map "0.7.3"
|
||||||
|
|
||||||
"@angular-devkit/schematics@9.0.0-next.15":
|
"@angular-devkit/schematics@9.0.0-rc.3":
|
||||||
version "9.0.0-next.15"
|
version "9.0.0-rc.3"
|
||||||
resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-9.0.0-next.15.tgz#0a39e4a78860e5e65660025c58e60bc9d4bf9cf7"
|
resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-9.0.0-rc.3.tgz#3c3177098251a003a9e1c0ab4f65e055fea7d941"
|
||||||
integrity sha512-0hfIyC5TP88wOzjKnQgXAI+BaW6JJPY7yinxBS35rowiwB1XWPcWRFacFXuyfLQRv48JXt17voOz+OH2iHRA5A==
|
integrity sha512-fxwhzE8i1zNs+f4wjpFJfwLE9FIJGYvmDCdXjh5eBA4rPBx8tIrGYXaCZgOrVVkrpO+1bNgrqCaC/lFm4jY8oA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@angular-devkit/core" "9.0.0-next.15"
|
"@angular-devkit/core" "9.0.0-rc.3"
|
||||||
|
ora "4.0.2"
|
||||||
rxjs "6.5.3"
|
rxjs "6.5.3"
|
||||||
|
|
||||||
"@angular/bazel@file:../../dist/packages-dist/bazel":
|
"@angular/bazel@file:../../dist/packages-dist/bazel":
|
||||||
version "9.0.0-next.13"
|
version "9.0.0-rc.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@microsoft/api-extractor" "^7.3.9"
|
"@microsoft/api-extractor" "^7.3.9"
|
||||||
shelljs "0.8.2"
|
shelljs "0.8.2"
|
||||||
tsickle "^0.37.0"
|
tsickle "^0.37.1"
|
||||||
|
|
||||||
"@angular/cli@file:../../node_modules/@angular/cli":
|
"@angular/cli@file:../../node_modules/@angular/cli":
|
||||||
version "9.0.0-next.15"
|
version "9.0.0-rc.3"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@angular-devkit/architect" "0.900.0-next.15"
|
"@angular-devkit/architect" "0.900.0-rc.3"
|
||||||
"@angular-devkit/core" "9.0.0-next.15"
|
"@angular-devkit/core" "9.0.0-rc.3"
|
||||||
"@angular-devkit/schematics" "9.0.0-next.15"
|
"@angular-devkit/schematics" "9.0.0-rc.3"
|
||||||
"@schematics/angular" "9.0.0-next.15"
|
"@schematics/angular" "9.0.0-rc.3"
|
||||||
"@schematics/update" "0.900.0-next.15"
|
"@schematics/update" "0.900.0-rc.3"
|
||||||
"@yarnpkg/lockfile" "1.1.0"
|
"@yarnpkg/lockfile" "1.1.0"
|
||||||
ansi-colors "4.1.1"
|
ansi-colors "4.1.1"
|
||||||
debug "^4.1.1"
|
debug "^4.1.1"
|
||||||
@ -60,29 +61,29 @@
|
|||||||
universal-analytics "^0.4.20"
|
universal-analytics "^0.4.20"
|
||||||
uuid "^3.3.2"
|
uuid "^3.3.2"
|
||||||
|
|
||||||
"@bazel/bazel-darwin_x64@0.28.1":
|
"@bazel/bazel-darwin_x64@1.1.0":
|
||||||
version "0.28.1"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@bazel/bazel-darwin_x64/-/bazel-darwin_x64-0.28.1.tgz#415658785e1dbd6f7ab5c8f2b98c1c99c614e1d5"
|
resolved "https://registry.yarnpkg.com/@bazel/bazel-darwin_x64/-/bazel-darwin_x64-1.1.0.tgz#9402ecadfaf0383bc366ef5b37b933e0d0e804fc"
|
||||||
integrity sha512-VDKWmplAfa4uCAbkIQ5nRn04MFQqtsPNuc2HkluJ8OIum773yC2dPR+OlLBKxrlBuKJYB27TtbOwOa6w/uK7aw==
|
integrity sha512-/dnpkjqnl2Qrcy+qFerOe+lV9QZ2HoUHtTplQgRxa+OH8AtQ7mcopdJ9/3Y10GqgT2Kp+AR6G99R59/Si+BOMg==
|
||||||
|
|
||||||
"@bazel/bazel-linux_x64@0.28.1":
|
"@bazel/bazel-linux_x64@1.1.0":
|
||||||
version "0.28.1"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@bazel/bazel-linux_x64/-/bazel-linux_x64-0.28.1.tgz#f78006089e17660261088272a0e04fc886572e34"
|
resolved "https://registry.yarnpkg.com/@bazel/bazel-linux_x64/-/bazel-linux_x64-1.1.0.tgz#98d75240e3e9ff5ba14fa48d6241d5d741e89926"
|
||||||
integrity sha512-n4XfNxagYhejQD32V4XSxT/qzuH1l/2jxslbKSak66/uQ+wad8Ew9rjNb4JUin3xtrfFtzmxx2jpQkybZsRVGA==
|
integrity sha512-yDR1URphRQTkXYjl4U2NLmbGR8ar8imhytK3txZZqlPf5pfWI/7wa7gSg0H4VbRRLIGAy/nD2eXZpgSj1eUiqA==
|
||||||
|
|
||||||
"@bazel/bazel-win32_x64@0.28.1":
|
"@bazel/bazel-win32_x64@1.1.0":
|
||||||
version "0.28.1"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@bazel/bazel-win32_x64/-/bazel-win32_x64-0.28.1.tgz#60a2819618cf7582cc35ac16c01763a5e807b414"
|
resolved "https://registry.yarnpkg.com/@bazel/bazel-win32_x64/-/bazel-win32_x64-1.1.0.tgz#e9c80a8c6495834ee7fc6184c425284d1151ac38"
|
||||||
integrity sha512-T4xksGfKikaHS4zxnGT6r5R436mz9j2lz//L1vc5sJnaEF/1e2Gv6MLl86vfZW2Xxo6iIEi6ntSzgYxP2Blohw==
|
integrity sha512-mj3ujcifKO+hjAjHvLoutYxzs90YWuc/fYJuVaEQrk4YFrRW5g70OpjN74zzBHRstObOjSZ3cOj+HDB19SIFKw==
|
||||||
|
|
||||||
"@bazel/bazel@file:../../node_modules/@bazel/bazel":
|
"@bazel/bazel@file:../../node_modules/@bazel/bazel":
|
||||||
version "0.28.1"
|
version "1.1.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@bazel/hide-bazel-files" latest
|
"@bazel/hide-bazel-files" latest
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
"@bazel/bazel-darwin_x64" "0.28.1"
|
"@bazel/bazel-darwin_x64" "1.1.0"
|
||||||
"@bazel/bazel-linux_x64" "0.28.1"
|
"@bazel/bazel-linux_x64" "1.1.0"
|
||||||
"@bazel/bazel-win32_x64" "0.28.1"
|
"@bazel/bazel-win32_x64" "1.1.0"
|
||||||
|
|
||||||
"@bazel/hide-bazel-files@latest":
|
"@bazel/hide-bazel-files@latest":
|
||||||
version "0.37.1"
|
version "0.37.1"
|
||||||
@ -142,23 +143,24 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@microsoft/tsdoc/-/tsdoc-0.12.14.tgz#0e0810a0a174e50e22dfe8edb30599840712f22d"
|
resolved "https://registry.yarnpkg.com/@microsoft/tsdoc/-/tsdoc-0.12.14.tgz#0e0810a0a174e50e22dfe8edb30599840712f22d"
|
||||||
integrity sha512-518yewjSga1jLdiLrcmpMFlaba5P+50b0TWNFUpC+SL9Yzf0kMi57qw+bMl+rQ08cGqH1vLx4eg9YFUbZXgZ0Q==
|
integrity sha512-518yewjSga1jLdiLrcmpMFlaba5P+50b0TWNFUpC+SL9Yzf0kMi57qw+bMl+rQ08cGqH1vLx4eg9YFUbZXgZ0Q==
|
||||||
|
|
||||||
"@schematics/angular@9.0.0-next.15":
|
"@schematics/angular@9.0.0-rc.3":
|
||||||
version "9.0.0-next.15"
|
version "9.0.0-rc.3"
|
||||||
resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-9.0.0-next.15.tgz#0247585ff7cdb9bdd108525f845e0ba0890b5ffc"
|
resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-9.0.0-rc.3.tgz#804fc0a360109298ec694d77bdaadcd3652cf094"
|
||||||
integrity sha512-Xc8Kvmk1s65h9AoaeN/CMuSMkzDnnarBrglk1MNOfD1y/WMmmJGLhcv+cOiTavJGFJNFv+iJmE8FJR6sDga3Wg==
|
integrity sha512-HIOlaReZFGQpjoLxGqDpNbw0UDg306KrPTDZ8eI0lSEAz6KKY3CsMWSGZ57cKRfw5PJYIybbpWeIvGsXq6i7uQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@angular-devkit/core" "9.0.0-next.15"
|
"@angular-devkit/core" "9.0.0-rc.3"
|
||||||
"@angular-devkit/schematics" "9.0.0-next.15"
|
"@angular-devkit/schematics" "9.0.0-rc.3"
|
||||||
|
|
||||||
"@schematics/update@0.900.0-next.15":
|
"@schematics/update@0.900.0-rc.3":
|
||||||
version "0.900.0-next.15"
|
version "0.900.0-rc.3"
|
||||||
resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.900.0-next.15.tgz#c86ea5c7e43c8bf39020d3861d58154edf3007c5"
|
resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.900.0-rc.3.tgz#b33b1d006fd76b6fc7a19ab3c84251d6ffc7fb9b"
|
||||||
integrity sha512-3FQK9hc/LIBY2D9+5MCdg7SfmAvOBh6XyKpN6aoX4GHNm8v5Yn74XZM6h3PWbIPK94EI8x/H7H/ZbXFkrOUUUA==
|
integrity sha512-+CFVwY3hLE54ZOjf1Big+49XW92Aiu7+wgU/kXnKhAGx7HtM4jflfMMtMJq2IjmBfr3+ObjwETSBQkWv4RtGYw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@angular-devkit/core" "9.0.0-next.15"
|
"@angular-devkit/core" "9.0.0-rc.3"
|
||||||
"@angular-devkit/schematics" "9.0.0-next.15"
|
"@angular-devkit/schematics" "9.0.0-rc.3"
|
||||||
"@yarnpkg/lockfile" "1.1.0"
|
"@yarnpkg/lockfile" "1.1.0"
|
||||||
ini "1.3.5"
|
ini "1.3.5"
|
||||||
|
npm-package-arg "^7.0.0"
|
||||||
pacote "9.5.8"
|
pacote "9.5.8"
|
||||||
rxjs "6.5.3"
|
rxjs "6.5.3"
|
||||||
semver "6.3.0"
|
semver "6.3.0"
|
||||||
@ -408,11 +410,21 @@ cli-cursor@^3.1.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
restore-cursor "^3.1.0"
|
restore-cursor "^3.1.0"
|
||||||
|
|
||||||
|
cli-spinners@^2.2.0:
|
||||||
|
version "2.2.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.2.0.tgz#e8b988d9206c692302d8ee834e7a85c0144d8f77"
|
||||||
|
integrity sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ==
|
||||||
|
|
||||||
cli-width@^2.0.0:
|
cli-width@^2.0.0:
|
||||||
version "2.2.0"
|
version "2.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
|
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
|
||||||
integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=
|
integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=
|
||||||
|
|
||||||
|
clone@^1.0.2:
|
||||||
|
version "1.0.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
|
||||||
|
integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
|
||||||
|
|
||||||
color-convert@^1.9.0:
|
color-convert@^1.9.0:
|
||||||
version "1.9.3"
|
version "1.9.3"
|
||||||
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
||||||
@ -512,6 +524,13 @@ debuglog@^1.0.1:
|
|||||||
resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
|
resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
|
||||||
integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=
|
integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=
|
||||||
|
|
||||||
|
defaults@^1.0.3:
|
||||||
|
version "1.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
|
||||||
|
integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
|
||||||
|
dependencies:
|
||||||
|
clone "^1.0.2"
|
||||||
|
|
||||||
define-properties@^1.1.2, define-properties@^1.1.3:
|
define-properties@^1.1.2, define-properties@^1.1.3:
|
||||||
version "1.1.3"
|
version "1.1.3"
|
||||||
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
|
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
|
||||||
@ -816,6 +835,13 @@ hosted-git-info@^2.7.1:
|
|||||||
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c"
|
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c"
|
||||||
integrity sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==
|
integrity sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==
|
||||||
|
|
||||||
|
hosted-git-info@^3.0.2:
|
||||||
|
version "3.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.2.tgz#8b7e3bd114b59b51786f8bade0f39ddc80275a97"
|
||||||
|
integrity sha512-ezZMWtHXm7Eb7Rq4Mwnx2vs79WUx2QmRg3+ZqeGroKzfDO+EprOcgRPYghsOP9JuYBfK18VojmRTGCg8Ma+ktw==
|
||||||
|
dependencies:
|
||||||
|
lru-cache "^5.1.1"
|
||||||
|
|
||||||
http-cache-semantics@^3.8.1:
|
http-cache-semantics@^3.8.1:
|
||||||
version "3.8.1"
|
version "3.8.1"
|
||||||
resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
|
resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
|
||||||
@ -944,6 +970,11 @@ is-fullwidth-code-point@^3.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
|
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
|
||||||
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
||||||
|
|
||||||
|
is-interactive@^1.0.0:
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e"
|
||||||
|
integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==
|
||||||
|
|
||||||
is-promise@^2.1.0:
|
is-promise@^2.1.0:
|
||||||
version "2.1.0"
|
version "2.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
|
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
|
||||||
@ -1055,6 +1086,13 @@ lodash@^4.17.15, lodash@~4.17.15:
|
|||||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
|
||||||
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
|
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
|
||||||
|
|
||||||
|
log-symbols@^3.0.0:
|
||||||
|
version "3.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4"
|
||||||
|
integrity sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==
|
||||||
|
dependencies:
|
||||||
|
chalk "^2.4.2"
|
||||||
|
|
||||||
lru-cache@^5.1.1:
|
lru-cache@^5.1.1:
|
||||||
version "5.1.1"
|
version "5.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
|
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
|
||||||
@ -1115,11 +1153,6 @@ minimist@0.0.8:
|
|||||||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
|
||||||
integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
|
integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
|
||||||
|
|
||||||
minimist@^1.2.0:
|
|
||||||
version "1.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
|
||||||
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
|
|
||||||
|
|
||||||
minipass@^2.2.1, minipass@^2.3.5:
|
minipass@^2.2.1, minipass@^2.3.5:
|
||||||
version "2.3.5"
|
version "2.3.5"
|
||||||
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848"
|
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848"
|
||||||
@ -1237,6 +1270,16 @@ npm-package-arg@^6.0.0, npm-package-arg@^6.1.0:
|
|||||||
semver "^5.5.0"
|
semver "^5.5.0"
|
||||||
validate-npm-package-name "^3.0.0"
|
validate-npm-package-name "^3.0.0"
|
||||||
|
|
||||||
|
npm-package-arg@^7.0.0:
|
||||||
|
version "7.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-7.0.0.tgz#52cdf08b491c0c59df687c4c925a89102ef794a5"
|
||||||
|
integrity sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==
|
||||||
|
dependencies:
|
||||||
|
hosted-git-info "^3.0.2"
|
||||||
|
osenv "^0.1.5"
|
||||||
|
semver "^5.6.0"
|
||||||
|
validate-npm-package-name "^3.0.0"
|
||||||
|
|
||||||
npm-packlist@^1.1.12:
|
npm-packlist@^1.1.12:
|
||||||
version "1.4.0"
|
version "1.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.0.tgz#b2c0867af2a396e0734343d2b6b3f7934db935f2"
|
resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.0.tgz#b2c0867af2a396e0734343d2b6b3f7934db935f2"
|
||||||
@ -1311,6 +1354,19 @@ open@7.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
is-wsl "^2.1.0"
|
is-wsl "^2.1.0"
|
||||||
|
|
||||||
|
ora@4.0.2:
|
||||||
|
version "4.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/ora/-/ora-4.0.2.tgz#0e1e68fd45b135d28648b27cf08081fa6e8a297d"
|
||||||
|
integrity sha512-YUOZbamht5mfLxPmk4M35CD/5DuOkAacxlEUbStVXpBAt4fyhBf+vZHI/HRkI++QUp3sNoeA2Gw4C+hi4eGSig==
|
||||||
|
dependencies:
|
||||||
|
chalk "^2.4.2"
|
||||||
|
cli-cursor "^3.1.0"
|
||||||
|
cli-spinners "^2.2.0"
|
||||||
|
is-interactive "^1.0.0"
|
||||||
|
log-symbols "^3.0.0"
|
||||||
|
strip-ansi "^5.2.0"
|
||||||
|
wcwidth "^1.0.1"
|
||||||
|
|
||||||
os-homedir@^1.0.0:
|
os-homedir@^1.0.0:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
|
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
|
||||||
@ -1683,7 +1739,7 @@ socks@~2.2.0:
|
|||||||
ip "^1.1.5"
|
ip "^1.1.5"
|
||||||
smart-buffer "4.0.2"
|
smart-buffer "4.0.2"
|
||||||
|
|
||||||
source-map@0.7.3, source-map@^0.7.3:
|
source-map@0.7.3:
|
||||||
version "0.7.3"
|
version "0.7.3"
|
||||||
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
|
||||||
integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
|
integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
|
||||||
@ -1856,14 +1912,10 @@ tough-cookie@~2.4.3:
|
|||||||
psl "^1.1.24"
|
psl "^1.1.24"
|
||||||
punycode "^1.4.1"
|
punycode "^1.4.1"
|
||||||
|
|
||||||
tsickle@^0.37.0:
|
tsickle@^0.37.1:
|
||||||
version "0.37.0"
|
version "0.37.1"
|
||||||
resolved "https://registry.yarnpkg.com/tsickle/-/tsickle-0.37.0.tgz#cc8a174310ac349913c62477b346db4f342c87d1"
|
resolved "https://registry.yarnpkg.com/tsickle/-/tsickle-0.37.1.tgz#2f8a87c1b15766e866457bd06fb6c0e0d84eed09"
|
||||||
integrity sha512-ufUZqLUNqh+kOfr52N/hJ5JbiDO32/CO7ZCteZBX9HA2kiejwEgDaJeJe1GAj2TIu683IgTA/LPKvlns6Liw0w==
|
integrity sha512-0GwgOJEnsmRsrONXCvcbAWY0CvdqF3UugPVoupUpA8Ul0qCPTuqqq0ou/hLqtKZOyyulzCP6MYRjb9/J1g9bJg==
|
||||||
dependencies:
|
|
||||||
minimist "^1.2.0"
|
|
||||||
mkdirp "^0.5.1"
|
|
||||||
source-map "^0.7.3"
|
|
||||||
|
|
||||||
tslib@^1.9.0:
|
tslib@^1.9.0:
|
||||||
version "1.9.3"
|
version "1.9.3"
|
||||||
@ -1978,6 +2030,13 @@ verror@1.10.0:
|
|||||||
core-util-is "1.0.2"
|
core-util-is "1.0.2"
|
||||||
extsprintf "^1.2.0"
|
extsprintf "^1.2.0"
|
||||||
|
|
||||||
|
wcwidth@^1.0.1:
|
||||||
|
version "1.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
|
||||||
|
integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
|
||||||
|
dependencies:
|
||||||
|
defaults "^1.0.3"
|
||||||
|
|
||||||
which@^1.3.1:
|
which@^1.3.1:
|
||||||
version "1.3.1"
|
version "1.3.1"
|
||||||
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
||||||
|
@ -63,29 +63,29 @@
|
|||||||
"@angular/router@file:../../dist/packages-dist/router":
|
"@angular/router@file:../../dist/packages-dist/router":
|
||||||
version "9.0.0-rc.1"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@bazel/bazel-darwin_x64@1.0.0":
|
"@bazel/bazel-darwin_x64@1.1.0":
|
||||||
version "1.0.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@bazel/bazel-darwin_x64/-/bazel-darwin_x64-1.0.0.tgz#8ab7ecba867130d87e3ecd6cfd5757e59ea274ab"
|
resolved "https://registry.yarnpkg.com/@bazel/bazel-darwin_x64/-/bazel-darwin_x64-1.1.0.tgz#9402ecadfaf0383bc366ef5b37b933e0d0e804fc"
|
||||||
integrity sha512-2J8qPpUAhSsuZ1P0kMFLvAQUz8zB8mkKmGL3/8raXUnw9TblsykwAdeg3QlJwTLORn+ZqdAjOYEQIarnTpS1NA==
|
integrity sha512-/dnpkjqnl2Qrcy+qFerOe+lV9QZ2HoUHtTplQgRxa+OH8AtQ7mcopdJ9/3Y10GqgT2Kp+AR6G99R59/Si+BOMg==
|
||||||
|
|
||||||
"@bazel/bazel-linux_x64@1.0.0":
|
"@bazel/bazel-linux_x64@1.1.0":
|
||||||
version "1.0.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@bazel/bazel-linux_x64/-/bazel-linux_x64-1.0.0.tgz#7043cc41eaf7b1d2618766e0759d513873bb9659"
|
resolved "https://registry.yarnpkg.com/@bazel/bazel-linux_x64/-/bazel-linux_x64-1.1.0.tgz#98d75240e3e9ff5ba14fa48d6241d5d741e89926"
|
||||||
integrity sha512-/ZpOrYyDNGqUyAGPHFr4Y1kn8xCG1G4Lg2VMZtfCZzDohzoYFYs8iyQGU2/8PwldH8XX+oJT9atWqSt1EyoeAw==
|
integrity sha512-yDR1URphRQTkXYjl4U2NLmbGR8ar8imhytK3txZZqlPf5pfWI/7wa7gSg0H4VbRRLIGAy/nD2eXZpgSj1eUiqA==
|
||||||
|
|
||||||
"@bazel/bazel-win32_x64@1.0.0":
|
"@bazel/bazel-win32_x64@1.1.0":
|
||||||
version "1.0.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@bazel/bazel-win32_x64/-/bazel-win32_x64-1.0.0.tgz#1111e4910c155a1917162ae96fd3737d062d20dd"
|
resolved "https://registry.yarnpkg.com/@bazel/bazel-win32_x64/-/bazel-win32_x64-1.1.0.tgz#e9c80a8c6495834ee7fc6184c425284d1151ac38"
|
||||||
integrity sha512-p5LpQ/WiijwOS+eBkdD7UewHL8JwK+8gpb4tIKqgh/a2yawgzEQPJDPBUV9ykss5t+s85BL2kEMhduuDewt/MA==
|
integrity sha512-mj3ujcifKO+hjAjHvLoutYxzs90YWuc/fYJuVaEQrk4YFrRW5g70OpjN74zzBHRstObOjSZ3cOj+HDB19SIFKw==
|
||||||
|
|
||||||
"@bazel/bazel@file:../../node_modules/@bazel/bazel":
|
"@bazel/bazel@file:../../node_modules/@bazel/bazel":
|
||||||
version "1.0.0"
|
version "1.1.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@bazel/hide-bazel-files" latest
|
"@bazel/hide-bazel-files" latest
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
"@bazel/bazel-darwin_x64" "1.0.0"
|
"@bazel/bazel-darwin_x64" "1.1.0"
|
||||||
"@bazel/bazel-linux_x64" "1.0.0"
|
"@bazel/bazel-linux_x64" "1.1.0"
|
||||||
"@bazel/bazel-win32_x64" "1.0.0"
|
"@bazel/bazel-win32_x64" "1.1.0"
|
||||||
|
|
||||||
"@bazel/hide-bazel-files@latest":
|
"@bazel/hide-bazel-files@latest":
|
||||||
version "0.38.3"
|
version "0.38.3"
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -3,13 +3,13 @@
|
|||||||
|
|
||||||
|
|
||||||
"@angular/animations@file:../../dist/packages-dist/animations":
|
"@angular/animations@file:../../dist/packages-dist/animations":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/common@file:../../dist/packages-dist/common":
|
"@angular/common@file:../../dist/packages-dist/common":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/compiler-cli@file:../../dist/packages-dist/compiler-cli":
|
"@angular/compiler-cli@file:../../dist/packages-dist/compiler-cli":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
canonical-path "1.0.0"
|
canonical-path "1.0.0"
|
||||||
chokidar "^2.1.1"
|
chokidar "^2.1.1"
|
||||||
@ -23,24 +23,24 @@
|
|||||||
yargs "13.1.0"
|
yargs "13.1.0"
|
||||||
|
|
||||||
"@angular/compiler@file:../../dist/packages-dist/compiler":
|
"@angular/compiler@file:../../dist/packages-dist/compiler":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/core@file:../../dist/packages-dist/core":
|
"@angular/core@file:../../dist/packages-dist/core":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/platform-browser-dynamic@file:../../dist/packages-dist/platform-browser-dynamic":
|
"@angular/platform-browser-dynamic@file:../../dist/packages-dist/platform-browser-dynamic":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/platform-browser@file:../../dist/packages-dist/platform-browser":
|
"@angular/platform-browser@file:../../dist/packages-dist/platform-browser":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/platform-server@file:../../dist/packages-dist/platform-server":
|
"@angular/platform-server@file:../../dist/packages-dist/platform-server":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
domino "^2.1.2"
|
domino "^2.1.2"
|
||||||
xhr2 "^0.1.4"
|
xhr2 "^0.1.4"
|
||||||
|
|
||||||
"@types/estree@0.0.39":
|
"@types/estree@*", "@types/estree@0.0.39":
|
||||||
version "0.0.39"
|
version "0.0.39"
|
||||||
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
|
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
|
||||||
integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
|
integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
|
||||||
@ -67,6 +67,13 @@
|
|||||||
version "0.0.32"
|
version "0.0.32"
|
||||||
resolved "https://registry.yarnpkg.com/@types/q/-/q-0.0.32.tgz#bd284e57c84f1325da702babfc82a5328190c0c5"
|
resolved "https://registry.yarnpkg.com/@types/q/-/q-0.0.32.tgz#bd284e57c84f1325da702babfc82a5328190c0c5"
|
||||||
|
|
||||||
|
"@types/resolve@0.0.8":
|
||||||
|
version "0.0.8"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194"
|
||||||
|
integrity sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "*"
|
||||||
|
|
||||||
"@types/selenium-webdriver@^3.0.0":
|
"@types/selenium-webdriver@^3.0.0":
|
||||||
version "3.0.14"
|
version "3.0.14"
|
||||||
resolved "https://registry.yarnpkg.com/@types/selenium-webdriver/-/selenium-webdriver-3.0.14.tgz#0b20a2370e6b1b8322c9c3dfcaa409e6c7c0c0a9"
|
resolved "https://registry.yarnpkg.com/@types/selenium-webdriver/-/selenium-webdriver-3.0.14.tgz#0b20a2370e6b1b8322c9c3dfcaa409e6c7c0c0a9"
|
||||||
@ -90,10 +97,10 @@ accepts@~1.3.3:
|
|||||||
mime-types "~2.1.16"
|
mime-types "~2.1.16"
|
||||||
negotiator "0.6.1"
|
negotiator "0.6.1"
|
||||||
|
|
||||||
acorn@^6.0.5:
|
acorn@^7.1.0:
|
||||||
version "6.0.5"
|
version "7.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.5.tgz#81730c0815f3f3b34d8efa95cb7430965f4d887a"
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c"
|
||||||
integrity sha512-i33Zgp3XWtmZBMNvCr4azvOFeWVw1Rk6p3hfi3LUDvIFraOMywb1kAtrbi+med14m4Xfpqm3zRZMT+c0FNE7kg==
|
integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==
|
||||||
|
|
||||||
adm-zip@^0.4.9:
|
adm-zip@^0.4.9:
|
||||||
version "0.4.13"
|
version "0.4.13"
|
||||||
@ -453,10 +460,10 @@ builtin-modules@^1.0.0:
|
|||||||
version "1.1.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
|
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
|
||||||
|
|
||||||
builtin-modules@^3.0.0:
|
builtin-modules@^3.1.0:
|
||||||
version "3.0.0"
|
version "3.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.0.0.tgz#1e587d44b006620d90286cc7a9238bbc6129cab1"
|
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484"
|
||||||
integrity sha512-hMIeU4K2ilbXV6Uv93ZZ0Avg/M91RaKXucQ+4me2Do1txxBDyDZWCBa5bJSLqoNTRpXTLwEzIk1KmloenDDjhg==
|
integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==
|
||||||
|
|
||||||
cache-base@^1.0.1:
|
cache-base@^1.0.1:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
@ -974,11 +981,6 @@ escape-string-regexp@^1.0.0, escape-string-regexp@^1.0.2:
|
|||||||
version "1.0.5"
|
version "1.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
||||||
|
|
||||||
estree-walker@^0.5.2:
|
|
||||||
version "0.5.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.5.2.tgz#d3850be7529c9580d815600b53126515e146dd39"
|
|
||||||
integrity sha512-XpCnW/AE10ws/kDAs37cngSkvgIR8aN3G0MS85m7dUpuK2EREo9VJ00uvw6Dg/hXEpfsE1I1TvJOJr+Z+TL+ig==
|
|
||||||
|
|
||||||
estree-walker@^0.6.1:
|
estree-walker@^0.6.1:
|
||||||
version "0.6.1"
|
version "0.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
|
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
|
||||||
@ -1719,6 +1721,13 @@ is-primitive@^2.0.0:
|
|||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
|
resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
|
||||||
|
|
||||||
|
is-reference@^1.1.2:
|
||||||
|
version "1.1.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.1.4.tgz#3f95849886ddb70256a3e6d062b1a68c13c51427"
|
||||||
|
integrity sha512-uJA/CDPO3Tao3GTrxYn6AwkM4nUPJiGGYu5+cB8qbC7WGFlrKZbiRo7SFKxUAEpFUfiHofWCXBUNhvYJMh+6zw==
|
||||||
|
dependencies:
|
||||||
|
"@types/estree" "0.0.39"
|
||||||
|
|
||||||
is-stream@^1.1.0:
|
is-stream@^1.1.0:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
||||||
@ -1930,20 +1939,13 @@ lodash@^4.11.1, lodash@^4.5.1:
|
|||||||
version "4.17.4"
|
version "4.17.4"
|
||||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
||||||
|
|
||||||
magic-string@^0.25.0:
|
magic-string@^0.25.0, magic-string@^0.25.2:
|
||||||
version "0.25.4"
|
version "0.25.4"
|
||||||
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.4.tgz#325b8a0a79fc423db109b77fd5a19183b7ba5143"
|
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.4.tgz#325b8a0a79fc423db109b77fd5a19183b7ba5143"
|
||||||
integrity sha512-oycWO9nEVAP2RVPbIoDoA4Y7LFIJ3xRYov93gAyJhZkET1tNuB0u7uWkZS2LpBWTJUWnmau/To8ECWRC+jKNfw==
|
integrity sha512-oycWO9nEVAP2RVPbIoDoA4Y7LFIJ3xRYov93gAyJhZkET1tNuB0u7uWkZS2LpBWTJUWnmau/To8ECWRC+jKNfw==
|
||||||
dependencies:
|
dependencies:
|
||||||
sourcemap-codec "^1.4.4"
|
sourcemap-codec "^1.4.4"
|
||||||
|
|
||||||
magic-string@^0.25.1:
|
|
||||||
version "0.25.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.2.tgz#139c3a729515ec55e96e69e82a11fe890a293ad9"
|
|
||||||
integrity sha512-iLs9mPjh9IuTtRsqqhNGYcZXGei0Nh/A4xirrsqW7c+QhKVFL2vm7U09ru6cHRD22azaP/wMDgI+HCqbETMTtg==
|
|
||||||
dependencies:
|
|
||||||
sourcemap-codec "^1.4.4"
|
|
||||||
|
|
||||||
map-age-cleaner@^0.1.1:
|
map-age-cleaner@^0.1.1:
|
||||||
version "0.1.3"
|
version "0.1.3"
|
||||||
resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
|
resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
|
||||||
@ -2775,10 +2777,10 @@ resolve-url@^0.2.1:
|
|||||||
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
||||||
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
||||||
|
|
||||||
resolve@^1.10.0:
|
resolve@^1.11.0, resolve@^1.11.1:
|
||||||
version "1.11.0"
|
version "1.12.0"
|
||||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.0.tgz#4014870ba296176b86343d50b60f3b50609ce232"
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
|
||||||
integrity sha512-WL2pBDjqT6pGUNSUzMw00o4T7If+z4H2x3Gz893WoUQ5KW8Vr9txp00ykiP16VBaZF5+j/OcXJHZ9+PCvdiDKw==
|
integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
|
||||||
dependencies:
|
dependencies:
|
||||||
path-parse "^1.0.6"
|
path-parse "^1.0.6"
|
||||||
|
|
||||||
@ -2801,33 +2803,36 @@ rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.
|
|||||||
glob "^7.0.5"
|
glob "^7.0.5"
|
||||||
|
|
||||||
"rollup-plugin-commonjs@file:../../node_modules/rollup-plugin-commonjs":
|
"rollup-plugin-commonjs@file:../../node_modules/rollup-plugin-commonjs":
|
||||||
version "9.2.1"
|
version "10.1.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
estree-walker "^0.5.2"
|
estree-walker "^0.6.1"
|
||||||
magic-string "^0.25.1"
|
is-reference "^1.1.2"
|
||||||
resolve "^1.10.0"
|
magic-string "^0.25.2"
|
||||||
rollup-pluginutils "^2.3.3"
|
resolve "^1.11.0"
|
||||||
|
rollup-pluginutils "^2.8.1"
|
||||||
|
|
||||||
"rollup-plugin-node-resolve@file:../../node_modules/rollup-plugin-node-resolve":
|
"rollup-plugin-node-resolve@file:../../node_modules/rollup-plugin-node-resolve":
|
||||||
version "4.0.1"
|
version "5.2.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
builtin-modules "^3.0.0"
|
"@types/resolve" "0.0.8"
|
||||||
|
builtin-modules "^3.1.0"
|
||||||
is-module "^1.0.0"
|
is-module "^1.0.0"
|
||||||
resolve "^1.10.0"
|
resolve "^1.11.1"
|
||||||
|
rollup-pluginutils "^2.8.1"
|
||||||
|
|
||||||
rollup-pluginutils@^2.3.3:
|
rollup-pluginutils@^2.8.1:
|
||||||
version "2.8.1"
|
version "2.8.2"
|
||||||
resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz#8fa6dd0697344938ef26c2c09d2488ce9e33ce97"
|
resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e"
|
||||||
integrity sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg==
|
integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
estree-walker "^0.6.1"
|
estree-walker "^0.6.1"
|
||||||
|
|
||||||
"rollup@file:../../node_modules/rollup":
|
"rollup@file:../../node_modules/rollup":
|
||||||
version "1.1.0"
|
version "1.25.2"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/estree" "0.0.39"
|
"@types/estree" "*"
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
acorn "^6.0.5"
|
acorn "^7.1.0"
|
||||||
|
|
||||||
rx@2.3.24:
|
rx@2.3.24:
|
||||||
version "2.3.24"
|
version "2.3.24"
|
||||||
|
@ -3,13 +3,13 @@
|
|||||||
|
|
||||||
|
|
||||||
"@angular/animations@file:../../dist/packages-dist/animations":
|
"@angular/animations@file:../../dist/packages-dist/animations":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/common@file:../../dist/packages-dist/common":
|
"@angular/common@file:../../dist/packages-dist/common":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/compiler-cli@file:../../dist/packages-dist/compiler-cli":
|
"@angular/compiler-cli@file:../../dist/packages-dist/compiler-cli":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
canonical-path "1.0.0"
|
canonical-path "1.0.0"
|
||||||
chokidar "^2.1.1"
|
chokidar "^2.1.1"
|
||||||
@ -23,19 +23,19 @@
|
|||||||
yargs "13.1.0"
|
yargs "13.1.0"
|
||||||
|
|
||||||
"@angular/compiler@file:../../dist/packages-dist/compiler":
|
"@angular/compiler@file:../../dist/packages-dist/compiler":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/core@file:../../dist/packages-dist/core":
|
"@angular/core@file:../../dist/packages-dist/core":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/platform-browser-dynamic@file:../../dist/packages-dist/platform-browser-dynamic":
|
"@angular/platform-browser-dynamic@file:../../dist/packages-dist/platform-browser-dynamic":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/platform-browser@file:../../dist/packages-dist/platform-browser":
|
"@angular/platform-browser@file:../../dist/packages-dist/platform-browser":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/platform-server@file:../../dist/packages-dist/platform-server":
|
"@angular/platform-server@file:../../dist/packages-dist/platform-server":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
domino "^2.1.2"
|
domino "^2.1.2"
|
||||||
xhr2 "^0.1.4"
|
xhr2 "^0.1.4"
|
||||||
@ -44,9 +44,8 @@
|
|||||||
version "2.5.41"
|
version "2.5.41"
|
||||||
resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-2.5.41.tgz#d5e86161a0af80d52062b310a33ed65b051a0713"
|
resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-2.5.41.tgz#d5e86161a0af80d52062b310a33ed65b051a0713"
|
||||||
|
|
||||||
"@types/node@^9.4.0":
|
"@types/node@file:../../node_modules/@types/node":
|
||||||
version "9.4.6"
|
version "12.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-9.4.6.tgz#d8176d864ee48753d053783e4e463aec86b8d82e"
|
|
||||||
|
|
||||||
"@types/q@^0.0.32":
|
"@types/q@^0.0.32":
|
||||||
version "0.0.32"
|
version "0.0.32"
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -3,12 +3,10 @@
|
|||||||
|
|
||||||
|
|
||||||
"@angular/core@file:../../dist/packages-dist/core":
|
"@angular/core@file:../../dist/packages-dist/core":
|
||||||
version "9.0.0-next.6"
|
version "9.0.0-rc.1"
|
||||||
dependencies:
|
|
||||||
tslib "^1.9.0"
|
|
||||||
|
|
||||||
"@angular/language-service@file:../../dist/packages-dist/language-service":
|
"@angular/language-service@file:../../dist/packages-dist/language-service":
|
||||||
version "9.0.0-next.6"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@types/node@file:../../node_modules/@types/node":
|
"@types/node@file:../../node_modules/@types/node":
|
||||||
version "12.11.1"
|
version "12.11.1"
|
||||||
@ -91,11 +89,6 @@ path-is-absolute@^1.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
||||||
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
|
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
|
||||||
|
|
||||||
tslib@^1.9.0:
|
|
||||||
version "1.10.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
|
|
||||||
integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
|
|
||||||
|
|
||||||
"typescript@file:../../node_modules/typescript":
|
"typescript@file:../../node_modules/typescript":
|
||||||
version "3.6.4"
|
version "3.6.4"
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
|
|
||||||
"@angular/animations@file:../../dist/packages-dist/animations":
|
"@angular/animations@file:../../dist/packages-dist/animations":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/cdk@^8.0.0":
|
"@angular/cdk@^8.0.0":
|
||||||
version "8.0.0"
|
version "8.0.0"
|
||||||
@ -15,10 +15,10 @@
|
|||||||
parse5 "^5.0.0"
|
parse5 "^5.0.0"
|
||||||
|
|
||||||
"@angular/common@file:../../dist/packages-dist/common":
|
"@angular/common@file:../../dist/packages-dist/common":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/compiler-cli@file:../../dist/packages-dist/compiler-cli":
|
"@angular/compiler-cli@file:../../dist/packages-dist/compiler-cli":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
canonical-path "1.0.0"
|
canonical-path "1.0.0"
|
||||||
chokidar "^2.1.1"
|
chokidar "^2.1.1"
|
||||||
@ -32,13 +32,13 @@
|
|||||||
yargs "13.1.0"
|
yargs "13.1.0"
|
||||||
|
|
||||||
"@angular/compiler@file:../../dist/packages-dist/compiler":
|
"@angular/compiler@file:../../dist/packages-dist/compiler":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/core@file:../../dist/packages-dist/core":
|
"@angular/core@file:../../dist/packages-dist/core":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/forms@file:../../dist/packages-dist/forms":
|
"@angular/forms@file:../../dist/packages-dist/forms":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/material@8.0.0":
|
"@angular/material@8.0.0":
|
||||||
version "8.0.0"
|
version "8.0.0"
|
||||||
@ -48,23 +48,21 @@
|
|||||||
tslib "^1.7.1"
|
tslib "^1.7.1"
|
||||||
|
|
||||||
"@angular/platform-browser-dynamic@file:../../dist/packages-dist/platform-browser-dynamic":
|
"@angular/platform-browser-dynamic@file:../../dist/packages-dist/platform-browser-dynamic":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/platform-browser@file:../../dist/packages-dist/platform-browser":
|
"@angular/platform-browser@file:../../dist/packages-dist/platform-browser":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/router@file:../../dist/packages-dist/router":
|
"@angular/router@file:../../dist/packages-dist/router":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@types/jasmine@2.5.41":
|
"@types/jasmine@2.5.41":
|
||||||
version "2.5.41"
|
version "2.5.41"
|
||||||
resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-2.5.41.tgz#d5e86161a0af80d52062b310a33ed65b051a0713"
|
resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-2.5.41.tgz#d5e86161a0af80d52062b310a33ed65b051a0713"
|
||||||
integrity sha1-1ehhYaCvgNUgYrMQoz7WWwUaBxM=
|
integrity sha1-1ehhYaCvgNUgYrMQoz7WWwUaBxM=
|
||||||
|
|
||||||
"@types/node@^9.4.0":
|
"@types/node@file:../../node_modules/@types/node":
|
||||||
version "9.6.35"
|
version "12.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.35.tgz#197dd535c094362a7c95f0b78f07583d6681ed26"
|
|
||||||
integrity sha512-h5zvHS8wXHGa+Gcqs9K8vqCgOtqjr0+NqG/DDJmQIX1wpR9HivAfgV8bjcD3mGM4bPfQw5Aneb2Pn8355L83jA==
|
|
||||||
|
|
||||||
"@types/q@^0.0.32":
|
"@types/q@^0.0.32":
|
||||||
version "0.0.32"
|
version "0.0.32"
|
||||||
|
@ -3,13 +3,13 @@
|
|||||||
|
|
||||||
|
|
||||||
"@angular/animations@file:../../dist/packages-dist/animations":
|
"@angular/animations@file:../../dist/packages-dist/animations":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/common@file:../../dist/packages-dist/common":
|
"@angular/common@file:../../dist/packages-dist/common":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/compiler-cli@file:../../dist/packages-dist/compiler-cli":
|
"@angular/compiler-cli@file:../../dist/packages-dist/compiler-cli":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
canonical-path "1.0.0"
|
canonical-path "1.0.0"
|
||||||
chokidar "^2.1.1"
|
chokidar "^2.1.1"
|
||||||
@ -23,19 +23,19 @@
|
|||||||
yargs "13.1.0"
|
yargs "13.1.0"
|
||||||
|
|
||||||
"@angular/compiler@file:../../dist/packages-dist/compiler":
|
"@angular/compiler@file:../../dist/packages-dist/compiler":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/core@file:../../dist/packages-dist/core":
|
"@angular/core@file:../../dist/packages-dist/core":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/platform-browser-dynamic@file:../../dist/packages-dist/platform-browser-dynamic":
|
"@angular/platform-browser-dynamic@file:../../dist/packages-dist/platform-browser-dynamic":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/platform-browser@file:../../dist/packages-dist/platform-browser":
|
"@angular/platform-browser@file:../../dist/packages-dist/platform-browser":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
"@angular/platform-server@file:../../dist/packages-dist/platform-server":
|
"@angular/platform-server@file:../../dist/packages-dist/platform-server":
|
||||||
version "9.0.0-next.10"
|
version "9.0.0-rc.1"
|
||||||
dependencies:
|
dependencies:
|
||||||
domino "^2.1.2"
|
domino "^2.1.2"
|
||||||
xhr2 "^0.1.4"
|
xhr2 "^0.1.4"
|
||||||
@ -45,10 +45,8 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-2.5.41.tgz#d5e86161a0af80d52062b310a33ed65b051a0713"
|
resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-2.5.41.tgz#d5e86161a0af80d52062b310a33ed65b051a0713"
|
||||||
integrity sha1-1ehhYaCvgNUgYrMQoz7WWwUaBxM=
|
integrity sha1-1ehhYaCvgNUgYrMQoz7WWwUaBxM=
|
||||||
|
|
||||||
"@types/node@10.11.x":
|
"@types/node@file:../../node_modules/@types/node":
|
||||||
version "10.11.7"
|
version "12.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-10.11.7.tgz#0e75ca9357d646ca754016ca1d68a127ad7e7300"
|
|
||||||
integrity sha512-yOxFfkN9xUFLyvWaeYj90mlqTJ41CsQzWKS3gXdOMOyPVacUsymejKxJ4/pMW7exouubuEeZLJawGgcNGYlTeg==
|
|
||||||
|
|
||||||
"@types/q@^0.0.32":
|
"@types/q@^0.0.32":
|
||||||
version "0.0.32"
|
version "0.0.32"
|
||||||
|
25
integration/service-worker-schema/yarn.lock
Normal file
25
integration/service-worker-schema/yarn.lock
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||||
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
|
"@angular/common@file:../../dist/packages-dist/common":
|
||||||
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
|
"@angular/core@file:../../dist/packages-dist/core":
|
||||||
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
|
"@angular/service-worker@file:../../dist/packages-dist/service-worker":
|
||||||
|
version "9.0.0-rc.1"
|
||||||
|
|
||||||
|
"rxjs@file:../../node_modules/rxjs":
|
||||||
|
version "6.5.3"
|
||||||
|
dependencies:
|
||||||
|
tslib "^1.9.0"
|
||||||
|
|
||||||
|
tslib@^1.9.0:
|
||||||
|
version "1.10.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
|
||||||
|
integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
|
||||||
|
|
||||||
|
"zone.js@file:../../dist/zone.js-dist/zone.js":
|
||||||
|
version "0.10.2"
|
1608
integration/terser/yarn.lock
Normal file
1608
integration/terser/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
1640
integration/typings_test_ts36/yarn.lock
Normal file
1640
integration/typings_test_ts36/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user