Skip to content

Commit 2240098

Browse files
committed
Update dependencies
1 parent 5a8fd18 commit 2240098

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

demo-angular/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,32 @@
99
"tslint": "tslint **/*.ts --config ../tslint.json"
1010
},
1111
"dependencies": {
12-
"@angular/animations": "~6.1.0",
13-
"@angular/common": "~6.1.0",
14-
"@angular/compiler": "~6.1.0",
15-
"@angular/core": "~6.1.0",
16-
"@angular/forms": "~6.1.0",
17-
"@angular/http": "~6.1.0",
18-
"@angular/platform-browser": "~6.1.0",
19-
"@angular/platform-browser-dynamic": "~6.1.0",
20-
"@angular/router": "~6.1.0",
21-
"nativescript-angular": "^6.2.0",
12+
"@angular/animations": "~7.0.0",
13+
"@angular/common": "~7.0.0",
14+
"@angular/compiler": "~7.0.0",
15+
"@angular/core": "~7.0.0",
16+
"@angular/forms": "~7.0.0",
17+
"@angular/http": "~7.0.0",
18+
"@angular/platform-browser": "~7.0.0",
19+
"@angular/platform-browser-dynamic": "~7.0.0",
20+
"@angular/router": "~7.0.0",
21+
"nativescript-angular": "^7.0.0",
2222
"nativescript-localize": "file:../src",
2323
"nativescript-theme-core": "~1.0.4",
2424
"reflect-metadata": "^0.1.12",
25-
"rxjs": "^6.0.0",
25+
"rxjs": "^6.3.3",
2626
"tns-core-modules": "^5.0.2",
2727
"zone.js": "^0.8.26"
2828
},
2929
"devDependencies": {
30-
"@angular/compiler-cli": "~6.1.0",
30+
"@angular/compiler-cli": "~7.0.0",
3131
"@nativescript/schematics": "^0.3.4",
32-
"@ngtools/webpack": "~6.2.0",
33-
"nativescript-dev-typescript": "^0.7.4",
34-
"nativescript-dev-webpack": "^0.17.0",
32+
"@ngtools/webpack": "~7.0.0",
33+
"nativescript-dev-typescript": "^0.7.6",
34+
"nativescript-dev-webpack": "^0.18.0",
3535
"tns-platform-declarations": "file:../src/node_modules/tns-platform-declarations",
3636
"tslint": "^5.8.0",
37-
"typescript": "~2.7.2"
37+
"typescript": "~3.1.1"
3838
},
3939
"nativescript": {
4040
"id": "org.nativescript.demo.angular",

demo-angular/webpack.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ module.exports = env => {
222222
]),
223223
// Copy assets to out dir. Add your own globs as needed.
224224
new CopyWebpackPlugin([
225-
{ from: "fonts/**" },
226-
{ from: "**/*.jpg" },
227-
{ from: "**/*.png" },
225+
{ from: { glob: "fonts/**" } },
226+
{ from: { glob: "**/*.jpg" } },
227+
{ from: { glob: "**/*.png" } },
228228
], { ignore: [`${relative(appPath, appResourcesFullPath)}/**`] }),
229229
// Generate a bundle starter script and activate it in package.json
230230
new nsWebpack.GenerateBundleStarterPlugin([

demo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"devDependencies": {
1515
"jasmine-core": "^3.3.0",
1616
"karma": "^3.1.1",
17-
"karma-jasmine": "^1.1.1",
17+
"karma-jasmine": "^2.0.1",
1818
"karma-nativescript-launcher": "^0.4.0",
19-
"nativescript-dev-webpack": "^0.17.0",
19+
"nativescript-dev-webpack": "^0.18.0",
2020
"tslint": "^5.8.0"
2121
},
2222
"nativescript": {

demo/webpack.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,9 @@ module.exports = env => {
204204
]),
205205
// Copy assets to out dir. Add your own globs as needed.
206206
new CopyWebpackPlugin([
207-
{ from: "fonts/**" },
208-
{ from: "**/*.jpg" },
209-
{ from: "**/*.png" },
207+
{ from: { glob: "fonts/**" } },
208+
{ from: { glob: "**/*.jpg" } },
209+
{ from: { glob: "**/*.png" } },
210210
], { ignore: [`${relative(appPath, appResourcesFullPath)}/**`] }),
211211
// Generate a bundle starter script and activate it in package.json
212212
new nsWebpack.GenerateBundleStarterPlugin([

0 commit comments

Comments
 (0)