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

Commit f91f25f

Browse files
Elena Hristovarosen-vladimirov
Elena Hristova
authored andcommitted
chore: remove bundle flag from documentation
1 parent d13441a commit f91f25f

11 files changed

+14
-565
lines changed

Diff for: CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ NOTE: There are three test apps in the repository, located in the `/demo` direct
7676
7777
4. Build the app for Android or iOS.
7878
``` bash
79-
tns run android/ios --bundle
79+
tns run android/ios
8080
```
8181
8282
5. Install [appium](http://appium.io/) globally.

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ For more details, see the [NativeScript docs for building with webpack](http://d
3333
```sh
3434
$ npm install --save-dev nativescript-dev-webpack
3535

36-
$ tns run android --bundle
36+
$ tns run android
3737
or
38-
$ tns run ios --bundle
38+
$ tns run ios
3939
```
4040

4141
## Contribute

Diff for: bin/ns-bundle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22

3-
console.error("Using npm run scripts is no longer supported. Use CLI commands and pass the --bundle flag instead.\nExample:\ntns build android --bundle")
3+
console.error("Using npm run scripts is no longer supported. Use CLI commands instead.\nExample:\ntns build android")
44
process.exit(1);

Diff for: demo/JavaScriptApp/.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
app/main-page.android.css
22
app/main-page.ios.css
3-
mochawesome-report
3+
mochawesome-report
4+
5+
webpack.config.js

Diff for: demo/JavaScriptApp/webpack.config.js

-260
This file was deleted.

Diff for: demo/TypeScriptApp/.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ e2e/**/*.js
44
app/app.android.css
55
app/app.ios.css
66
app/main-page.android.css
7-
app/main-page.ios.css
7+
app/main-page.ios.css
8+
9+
webpack.config.js

0 commit comments

Comments
 (0)