You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/index.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ All of these can be updated with `bower update` as new versions are released.
50
50
51
51
## Injection
52
52
53
-
A grunt/gulp task looks for new files in your `client/app` and `client/components` folder and automatically injects them in the appropriate places based on an injection block.
53
+
A gulp task looks for new files in your `client/app` and `client/components` folder and automatically injects them in the appropriate places based on an injection block.
54
54
55
55
*`less` files into `client/app/app.less`
56
56
*`scss` files into `client/app/app.scss`
@@ -68,23 +68,23 @@ A `.yo-rc` file is generated for helping you copy configuration across projects,
68
68
69
69
## Testing
70
70
71
-
Running `grunt test` will run the client and server unit tests with karma and mocha.
71
+
Running `gulp test` will run the client and server unit tests with karma and mocha.
72
72
73
-
Use `grunt test:server` to only run server tests.
73
+
Use `gulp test:server` to only run server tests.
74
74
75
-
Use `grunt test:client` to only run client tests.
75
+
Use `gulp test:client` to only run client tests.
76
76
77
77
**Protractor tests**
78
78
79
79
To setup protractor e2e tests, you must first run
80
80
81
81
`npm run update-webdriver`
82
82
83
-
Use `grunt test:e2e` to have protractor go through tests located in the `e2e` folder.
83
+
Use `gulp test:e2e` to have protractor go through tests located in the `e2e` folder.
84
84
85
85
**Code Coverage**
86
86
87
-
Use `grunt test:coverage` to run mocha-istanbul and generate code coverage reports.
87
+
Use `gulp test:coverage` to run mocha-istanbul and generate code coverage reports.
88
88
89
89
`coverage/server` will be populated with `e2e` and `unit` folders containing the `lcov` reports.
90
90
@@ -97,11 +97,12 @@ The coverage taget has 3 available options:
97
97
98
98
**Debugging**
99
99
100
-
Use `grunt serve:debug` for a more debugging-friendly environment.
100
+
Use `gulp serve:debug` for a more debugging-friendly environment.
101
101
102
102
## Environment Variables
103
103
104
-
Keeping your app secrets and other sensitive information in source control isn't a good idea. To have grunt launch your app with specific environment variables, add them to the git ignored environment config file: `server/config/local.env.js`.
104
+
Keeping your app secrets and other sensitive information in source control isn't a good idea.
105
+
To have gulp launch your app with specific environment variables, add them to the git ignored environment config file: `server/config/local.env.js`.
Copy file name to clipboardExpand all lines: readme.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@
14
14
15
15
## Usage
16
16
17
-
Install `yo`, `grunt-cli`/`gulp-cli`, `bower`, and `generator-angular-fullstack`:
17
+
Install `yo`, `gulp-cli`, and `generator-angular-fullstack`:
18
18
```
19
-
npm install -g yo grunt-cli gulp-cli bower generator-angular-fullstack
19
+
npm install -g yo gulp-cli generator-angular-fullstack
20
20
```
21
21
22
22
> To install the latest 4.0.0 Beta with Webpack support, use `generator-angular-fullstack@beta`
@@ -31,7 +31,7 @@ Run `yo angular-fullstack`, optionally passing an app name:
31
31
yo angular-fullstack [app-name]
32
32
```
33
33
34
-
Run `grunt`/`gulp build` for building, `grunt serve`/`gulp serve` for development, and `grunt serve:dist`/`gulp serve:dist` for a preview of the built app.
34
+
Run `gulp build` for building, `gulp serve` for development, and `gulp serve:dist` for a preview of the built app.
35
35
36
36
## Prerequisites
37
37
@@ -42,7 +42,7 @@ Run `grunt`/`gulp build` for building, `grunt serve`/`gulp serve` for developmen
42
42
43
43
**General**
44
44
45
-
* Build Systems: `Grunt` (deprecated, will be removed in 4.0.0), `Gulp`
0 commit comments