mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
update to angular 2.0.0-alpha.44
This commit is contained in:
@ -11,8 +11,8 @@
|
|||||||
"link": "npm install && gulp src && npm link"
|
"link": "npm install && gulp src && npm link"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"angular2": "2.0.0-alpha.42",
|
"angular2": "2.0.0-alpha.44",
|
||||||
"@reactivex/rxjs": "0.0.0-prealpha.3",
|
"@reactivex/rxjs": "5.0.0-alpha.4",
|
||||||
"reflect-metadata": "0.1.1",
|
"reflect-metadata": "0.1.1",
|
||||||
"zone.js": "0.5.8"
|
"zone.js": "0.5.8"
|
||||||
},
|
},
|
||||||
|
@ -34,6 +34,12 @@ module.exports = function(gulp, argv, buildConfig) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
function snapshot(done, quickMode) {
|
function snapshot(done, quickMode) {
|
||||||
|
|
||||||
|
if (!snapshotConfig.accessKey || !snapshotConfig.accessKey.length) {
|
||||||
|
console.error('Missing IONIC_SNAPSHOT_KEY environment variable');
|
||||||
|
return done();
|
||||||
|
}
|
||||||
|
|
||||||
var testId = uuid.v4().split('-')[0];
|
var testId = uuid.v4().split('-')[0];
|
||||||
|
|
||||||
var protractorConfigFile = path.resolve(projectRoot, 'scripts/snapshot/protractor.config.js');
|
var protractorConfigFile = path.resolve(projectRoot, 'scripts/snapshot/protractor.config.js');
|
||||||
|
Reference in New Issue
Block a user