Skip to content

Commit 09e3ce6

Browse files
authored
Merge pull request #273 from NativeScript/lini/update-ns-6.3
feat: update dependencies for NativeScript 6.3 release
2 parents 8e7ac8a + b9bb8b4 commit 09e3ce6

File tree

4 files changed

+21
-11
lines changed

4 files changed

+21
-11
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [1.0.0](https://github.com/nativescript/nativescript-schematics/compare/0.7.3...1.0.0) (2019-12-12)
2+
3+
4+
### Features
5+
* update to NativeScript v6.3.x ([588e2c3](https://github.com/NativeScript/nativescript-schematics/commit/588e2c36174647144588cc1756fe63a9ad5f4c3c))
6+
* support for @nativescript/theme v2 ([10afbe1](https://github.com/NativeScript/nativescript-schematics/commit/10afbe1443d66f7ed535c8c6ee3abe0fb7d4171b))
7+
* (android) support for dark theme ([d9a7c6f](https://github.com/NativeScript/nativescript-schematics/commit/d9a7c6fb21f9a2f8f944d72162144de4e057357f))
8+
9+
10+
111
## [0.7.3](https://github.com/nativescript/nativescript-schematics/compare/0.7.2...0.7.3) (2019-11-11)
212

313

src/add-ns/index.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -363,17 +363,17 @@ const addDependencies = () => (tree: Tree, context: SchematicContext) => {
363363
// @UPGRADE: Update all versions whenever {N} version updates
364364
const depsToAdd = {
365365
'nativescript-angular': '~8.20.0',
366-
'@nativescript/theme': '~2.2.0',
366+
'@nativescript/theme': '~2.2.1',
367367
'reflect-metadata': '~0.1.12',
368-
'tns-core-modules': '~6.2.0',
368+
'tns-core-modules': '~6.3.0',
369369
'tslib': '1.10.0',
370370
};
371371
packageJson.dependencies = {...depsToAdd, ...packageJson.dependencies};
372372

373373
const devDepsToAdd = {
374-
'nativescript-dev-webpack': '~1.3.0',
374+
'nativescript-dev-webpack': '~1.4.0',
375375
'@nativescript/schematics': '~1.0.0',
376-
'@nativescript/tslint-rules': '~0.0.2',
376+
'@nativescript/tslint-rules': '~0.0.5',
377377
};
378378
packageJson.devDependencies = {...devDepsToAdd, ...packageJson.devDependencies};
379379

src/ng-new/application/_files/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
"@angular/platform-browser-dynamic": "~8.2.0",
1717
"@angular/router": "~8.2.0",
1818
"nativescript-angular": "~8.20.0",<% if(theme) { %>
19-
"@nativescript/theme": "~2.2.0",
19+
"@nativescript/theme": "~2.2.1",
2020
<% } %>"reflect-metadata": "~0.1.12",
2121
"rxjs": "~6.4.0",
22-
"tns-core-modules": "~6.2.0",
22+
"tns-core-modules": "~6.3.0",
2323
"tslib": "1.10.0",
2424
"zone.js": "~0.9.1"
2525
},
@@ -28,7 +28,7 @@
2828
"@angular/compiler-cli": "~8.2.0",
2929
"@angular-devkit/core": "~8.2.0",
3030
"@nativescript/schematics": "~1.0.0",<% if(webpack) { %>
31-
"nativescript-dev-webpack": "~1.3.0",
31+
"nativescript-dev-webpack": "~1.4.0",
3232
"@ngtools/webpack": "~8.2.0",
3333
<% } %>"typescript": "~3.5.3"
3434
}

src/ng-new/shared/_files/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
2929
"@angular/router": "~8.2.0",
3030
"core-js": "^2.6.9",
3131
"nativescript-angular": "~8.20.0",<% if(theme) { %>
32-
"@nativescript/theme": "~2.2.0",
32+
"@nativescript/theme": "~2.2.1",
3333
<% } %>"reflect-metadata": "~0.1.12",
3434
"rxjs": "~6.4.0",
35-
"tns-core-modules": "~6.2.0",
35+
"tns-core-modules": "~6.3.0",
3636
"tslib": "1.10.0",
3737
"zone.js": "~0.9.1"
3838
},
@@ -41,7 +41,7 @@
4141
"@angular/compiler-cli": "~8.2.0",
4242
"@angular-devkit/build-angular": "~0.803.0",
4343
"@nativescript/schematics": "~1.0.0",
44-
"@nativescript/tslint-rules": "~0.0.4",
44+
"@nativescript/tslint-rules": "~0.0.5",
4545
"@types/jasmine": "~3.3.8",
4646
"@types/jasminewd2": "~2.0.3",
4747
"@types/node": "~8.9.4",
@@ -53,7 +53,7 @@
5353
"karma-coverage-istanbul-reporter": "~2.0.1",
5454
"karma-jasmine": "~2.0.1",
5555
"karma-jasmine-html-reporter": "^1.4.0",
56-
"nativescript-dev-webpack": "~1.3.0",
56+
"nativescript-dev-webpack": "~1.4.0",
5757
"protractor": "~5.4.0",
5858
"ts-node": "~7.0.0",
5959
"tslint": "~5.15.0",

0 commit comments

Comments
 (0)