Skip to content

Commit 5dc3e79

Browse files
authored
Merge pull request #395 from NativeScript/hristova/update-to-latest-dependencies
chore: update to latest dependencies
2 parents 7d1a270 + 84d5ea1 commit 5dc3e79

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,30 @@
2222
"nativescript": {
2323
"id": "org.nativescript.nativescriptsdkexamplesng",
2424
"tns-android": {
25-
"version": "6.0.0"
25+
"version": "6.0.1"
2626
},
2727
"tns-ios": {
2828
"version": "6.0.1"
2929
}
3030
},
3131
"dependencies": {
32-
"@angular/common": "8.0.0",
33-
"@angular/compiler": "8.0.0",
34-
"@angular/core": "8.0.0",
35-
"@angular/forms": "8.0.0",
32+
"@angular/common": "~8.0.0",
33+
"@angular/compiler": "~8.0.0",
34+
"@angular/core": "~8.0.0",
35+
"@angular/forms": "~8.0.0",
3636
"@angular/http": "8.0.0-beta.10",
37-
"@angular/platform-browser": "8.0.0",
38-
"@angular/platform-browser-dynamic": "8.0.0",
39-
"@angular/router": "8.0.0",
40-
"nativescript-angular": "8.0.2",
37+
"@angular/platform-browser": "~8.0.0",
38+
"@angular/platform-browser-dynamic": "~8.0.0",
39+
"@angular/router": "~8.0.0",
40+
"nativescript-angular": "~8.0.3",
4141
"nativescript-camera": "^4.5.0",
4242
"nativescript-geolocation": "^5.1.0",
4343
"nativescript-intl": "~3.0.0",
4444
"nativescript-theme-core": "^1.0.6",
4545
"reflect-metadata": "~0.1.12",
4646
"rxjs": "^6.3.3",
47-
"tns-core-modules": "6.0.1",
48-
"zone.js": "0.9.1"
47+
"tns-core-modules": "~6.0.3",
48+
"zone.js": "^0.9.1"
4949
},
5050
"devDependencies": {
5151
"@angular/compiler-cli": "8.0.0",
@@ -55,13 +55,13 @@
5555
"glob": "^7.1.3",
5656
"lazy": "1.0.11",
5757
"markdown-snippet-injector": "^0.2.2",
58-
"nativescript-dev-webpack": "1.0.1",
58+
"nativescript-dev-webpack": "~1.0.2",
5959
"opener": "^1.4.1",
6060
"rimraf": "^2.5.3",
6161
"tar.gz": "^1.0.5",
6262
"tns-platform-declarations": "6.0.1",
6363
"tslint": "^5.11.0",
64-
"typescript": "3.4.5"
64+
"typescript": "~3.4.5"
6565
},
6666
"scripts": {
6767
"pretsc": "npm install",

webpack.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ module.exports = env => {
197197
module: {
198198
rules: [
199199
{
200-
test: nsWebpack.getEntryPathRegExp(appFullPath, entryPath),
200+
include: join(appFullPath, entryPath),
201201
use: [
202202
// Require all Android app components
203203
platform === "android" && {
@@ -269,6 +269,7 @@ module.exports = env => {
269269
new CleanWebpackPlugin(itemsToClean, { verbose: !!verbose }),
270270
// Copy assets to out dir. Add your own globs as needed.
271271
new CopyWebpackPlugin([
272+
{ from: { glob: "ng-ui-widgets-category/web-view/web-view-html/*.html"} },
272273
{ from: { glob: "fonts/**" } },
273274
{ from: { glob: "**/*.jpg" } },
274275
{ from: { glob: "**/*.png" } },

webpack.config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Add the following `test.html`for the WebView exmaple via the ollowing line in `webpack.config.js`
1+
Add the following `test.html`for the WebView exmaple via the following line in `webpack.config.js`
22

33
```JS
44
new CopyWebpackPlugin([

0 commit comments

Comments
 (0)