Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

feat: update to angular 8.2 #1017

Merged
merged 3 commits into from
Aug 12, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ NOTE: There are three test apps in the repository, located in the `/demo` direct

4. Build the app for Android or iOS.
``` bash
tns run android/ios --bundle
tns run android/ios
```

5. Install [appium](http://appium.io/) globally.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ For more details, see the [NativeScript docs for building with webpack](http://d
```sh
$ npm install --save-dev nativescript-dev-webpack

$ tns run android --bundle
$ tns run android
or
$ tns run ios --bundle
$ tns run ios
```

## Contribute
Expand Down
2 changes: 1 addition & 1 deletion bin/ns-bundle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node

console.error("Using npm run scripts is no longer supported. Use CLI commands and pass the --bundle flag instead.\nExample:\ntns build android --bundle")
console.error("Using npm run scripts is no longer supported. Use CLI commands instead.\nExample:\ntns build android")
process.exit(1);
4 changes: 3 additions & 1 deletion demo/AngularApp/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ test-results.xml

app/item/items.component.android.css
app/item/items.component.ios.css
mochawesome-report
mochawesome-report

webpack.config.js
22 changes: 11 additions & 11 deletions demo/AngularApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@
}
},
"dependencies": {
"@angular/common": "8.0.0",
"@angular/compiler": "8.0.0",
"@angular/core": "8.0.0",
"@angular/forms": "8.0.0",
"@angular/common": "8.2.0",
"@angular/compiler": "8.2.0",
"@angular/core": "8.2.0",
"@angular/forms": "8.2.0",
"@angular/http": "8.0.0-beta.10",
"@angular/platform-browser": "8.0.0",
"@angular/platform-browser-dynamic": "8.0.0",
"@angular/router": "8.0.0",
"@angular/platform-browser": "8.2.0",
"@angular/platform-browser-dynamic": "8.2.0",
"@angular/router": "8.2.0",
"nativescript-angular": "next",
"nativescript-theme-core": "~1.0.2",
"reflect-metadata": "~0.1.8",
"rxjs": "^6.3.3",
"tns-core-modules": "next",
"zone.js": "^0.8.4"
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular/compiler-cli": "8.0.0",
"@ngtools/webpack": "8.0.0",
"@angular/compiler-cli": "8.2.0",
"@ngtools/webpack": "8.2.0",
"@types/chai": "~4.1.7",
"@types/mocha": "~5.2.5",
"@types/node": "~10.12.18",
Expand All @@ -44,7 +44,7 @@
"nativescript-dev-appium": "next",
"nativescript-dev-webpack": "next",
"node-sass": "^4.12.0",
"typescript": "~3.4.5"
"typescript": "~3.5.3"
},
"scripts": {
"setup": "npm pack ../../ && npm i -D nativescript-dev-webpack*.tgz",
Expand Down
Loading