Skip to content

Commit

Permalink
feat(schematics): switch to angular 5.1 and CLI 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
vsavkin committed Dec 12, 2017
1 parent 6bbcddb commit a477bb9
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 152 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
"jasmine-marbles": "0.1.0"
},
"devDependencies": {
"@angular-devkit/schematics": "0.0.35",
"@angular/cli": "nrwl/fix-cli-build",
"@angular/cli": "nrwl/fix-cli-build#release16",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/compiler-cli": "5.0.0",
Expand All @@ -37,7 +36,6 @@
"@ngrx/router-store": "4.1.0",
"@ngrx/store": "4.1.0",
"@ngrx/store-devtools": "4.0.0",
"@schematics/angular": "0.1.0",
"@types/jasmine": "2.5.53",
"@types/node": "8.0.7",
"angular": "1.6.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@angular/platform-browser-dynamic": "<%= angularVersion %>",
"@angular/router": "<%= angularVersion %>",
"core-js": "^2.4.1",
"rxjs": "^5.5.2",
"rxjs": "<%= rxjsVersion %>",
"zone.js": "^0.8.14",
"@nrwl/nx": "<%= nxVersion %>",
"@ngrx/effects": "<%= ngrxVersion %>",
Expand Down Expand Up @@ -52,7 +52,7 @@
"protractor": "~5.1.2",
"ts-node": "~3.2.0",
"tslint": "~5.3.2",<% } %>
"typescript": "2.5.3",
"typescript": "<%= typescriptVersion %>",
"prettier": "<%= prettierVersion %>"
}
}
14 changes: 9 additions & 5 deletions packages/schematics/src/collection/utility/lib-versions.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
export const angularCliVersion = 'nrwl/fix-cli-build';
export const angularVersion = '5.0.0';
export const angularCliVersion = 'nrwl/fix-cli-build#release16';
export const angularVersion = '5.1.0';
export const angularJsVersion = '1.6.6';
export const ngrxVersion = '^4.1.0';
export const ngrxVersion = '4.1.1';
export const nxVersion = '*';
export const schematicsVersion = '*';
export const latestMigration = '20171211-create-tsconfigapp-per-app.ts';
export const latestMigration = '20171211-create-tsconfigapp-per-app';
export const prettierVersion = '1.8.2';
export const typescriptVersion = '2.5.3';
export const rxjsVersion = '5.5.2';

export const libVersions = {
angularVersion,
Expand All @@ -15,5 +17,7 @@ export const libVersions = {
nxVersion,
schematicsVersion,
prettierVersion,
latestMigration
latestMigration,
typescriptVersion,
rxjsVersion
};
Loading

0 comments on commit a477bb9

Please sign in to comment.