Skip to content

Commit ff65504

Browse files
committed
docs(readme): updated to v0.2.5
1 parent dfa11d5 commit ff65504

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ng-devstack v0.2.4
1+
# ng-devstack v0.2.5
22

33
#### Everything a front-end developer needs to simplify building AngularJS applications.
44

@@ -80,7 +80,7 @@ $ gulp
8080

8181
## Additional info
8282

83-
All styles (as well as scripts and templates) added to `src/app/` and `src/common/` should be included to the project automatically - except to `src/sass/` folder. Files put into `src/sass/` must be manually imported in `src/sass/main.scss` file (you may want to set custom order for loading your styles). If files located in `src/sass/` are not imported in `src/sass/main.scss`, they will not work!
83+
All styles (as well as scripts and templates) added to `src/app/` and `src/common/` should be included to the project automatically - with a small difference to `src/sass/` folder. Partials SASS files (such as variables, mixins, etc.) put into `src/sass/includes/` must be manually imported in `src/sass/_includes.scss` file (you may want to set custom order for loading your styles). Partials located in `src/sass/_includes/` should be named with a leading underscore `_`, so the compiler knows not to generate them into a CSS file (see [SASS official site](http://sass-lang.com/guide#topic-4) for details).
8484

8585
Vendor files downloaded with Bower can be added to project by editing `'vendor_files'` section in `config.json` file. The rest of this file should remain unchanged.
8686

@@ -104,11 +104,12 @@ In addition, image optimization is turned off by default but in case you need it
104104

105105
>
106106
```sh
107-
// .pipe(plugins.imagemin({ optimizationLevel: 5, progressive: true }))
107+
// .pipe(plugins.imagemin({ optimizationLevel: 7, progressive: true, interlaced: true }))
108108
```
109109

110110
## TODO
111111

112112
- add support for external sources in vendor files (http://*)
113+
- substitute local vendor files with CDN resources
113114
- add authorization service
114115
- improve images/SVG optimization

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ gulp.task('assets', ['assets:img', 'vendor:assets'], function () {
169169
.pipe(plugins.plumber())
170170
// .pipe(plugins.bytediff.start())
171171
.pipe(plugins.newer(config.dist + '/assets'))
172-
// .pipe(plugins.imagemin({ optimizationLevel: 5, progressive: true }))
172+
// .pipe(plugins.imagemin({ optimizationLevel: 7, progressive: true, interlaced: true }))
173173
// .pipe(plugins.bytediff.stop())
174174
.pipe(gulp.dest(config.dist + '/assets'));
175175
});

0 commit comments

Comments
 (0)