build: pin versions in integration/*/package.json (#14378)

Floating versions can break our CI. This happened with concurrently release last evening.
Ideally we should just check in the yarn.lock file but are blocked on https://github.com/yarnpkg/yarn/issues/2256

PR Close #14378
This commit is contained in:
Alex Eagle 2017-02-09 09:52:35 -08:00 committed by Miško Hevery
parent b9d293af03
commit 0dcac966b4
2 changed files with 10 additions and 12 deletions

View File

@ -10,20 +10,19 @@
"@angular/platform-browser": "file:../../dist/packages-dist-es2015/platform-browser",
"@angular/platform-server": "file:../../dist/packages-dist-es2015/platform-server",
"@angular/tsc-wrapped": "file:../../dist/tools/@angular/tsc-wrapped",
"google-closure-compiler": "^20161201.0.0",
"google-closure-compiler": "20161201.0.0",
"rxjs": "file:../../node_modules/rxjs",
"source-map-explorer": "^1.3.3",
"typescript": "~2.1",
"zone.js": "^0.7.6"
"typescript": "2.1.6",
"zone.js": "0.7.6"
},
"devDependencies": {
"@types/jasmine": "^2.5.41",
"concurrently": "^3.1.0",
"lite-server": "^2.2.2",
"@types/jasmine": "2.5.41",
"concurrently": "3.1.0",
"lite-server": "2.2.2",
"protractor": "file:../../node_modules/protractor"
},
"scripts": {
"test": "ngc && ./bundle.sh && concurrently \"PATH=$PATH yarn run serve\" \"PATH=$PATH yarn run protractor\" --kill-others --success first",
"test": "ngc && ./bundle.sh && concurrently \"yarn run serve\" \"yarn run protractor\" --kill-others --success first",
"serve": "lite-server -c e2e/browser.config.json",
"preprotractor": "tsc -p e2e",
"protractor": "protractor e2e/protractor.config.js"

View File

@ -15,11 +15,10 @@
"@angular/router": "file:../../dist/packages-dist/router",
"@angular/tsc-wrapped": "file:../../dist/tools/@angular/tsc-wrapped",
"@angular/upgrade": "file:../../dist/packages-dist/upgrade",
"@types/jasmine": "^2.5.41",
"@types/jasmine": "2.5.41",
"rxjs": "file:../../node_modules/rxjs",
"source-map-explorer": "^1.3.3",
"typescript": "~2.1",
"zone.js": "^0.7.6"
"typescript": "2.1.6",
"zone.js": "0.7.6"
},
"scripts": {
"test": "tsc"