Last active
December 27, 2015 19:41
-
-
Save IGGY-MODEL/8bc7ae7da07795684976 to your computer and use it in GitHub Desktop.
start architecture of project + I USE tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node_modules/ | |
| dist/ | |
| /*сюда соберется уже конечный продукт*/ | |
| css/ | |
| fonts/ | |
| img/ | |
| js/ | |
| index.html | |
| src/ | |
| bower_components/ | |
| bootstrap/ | |
| jquery/ | |
| ... etc. | |
| assets/ | |
| fonts/ | |
| FontAwesome.otf | |
| ... | |
| ... | |
| img/ | |
| logo.png | |
| ... | |
| ... | |
| js/ | |
| main.js | |
| functions.js | |
| jquery.min.js | |
| css/ | |
| 1-tools/ | |
| bourbon/ | |
| _fonts.scss | |
| _normalize.scss | |
| _vars.sass | |
| 2-basics/ | |
| _basic.sass | |
| 3-modules/ | |
| _modules.sass | |
| 4-pages/ | |
| _pages.sass | |
| main.sass | |
| main.css | |
| index.html | |
| .bowerrc | |
| .gitignore | |
| bower.json | |
| gulpfile.js | |
| package.json | |
| *** I USE *** | |
| browserify npm install -g browserify , http://browserify.org/ | |
| webpack npm install webpack -g , https://webpack.github.io/ | |
| ----- | |
| gulp- | |
| ? autoprefixer npm install --save-dev gulp-autoprefixer , https://www.npmjs.com/package/gulp-autoprefixer | |
| ? clean npm install --save-dev gulp-clean , https://www.npmjs.com/package/gulp-clean | |
| if npm install --save-dev gulp-if , https://www.npmjs.com/package/gulp-if | |
| concat-css npm install --save-dev gulp-concat-css , https://www.npmjs.com/package/gulp-concat-css | |
| minify-css npm install --save-dev gulp-minify-css , https://www.npmjs.com/package/gulp-minify-css | |
| ? rename npm install gulp-rename, https://www.npmjs.com/package/gulp-rename | |
| ? rev-append npm install gulp-rev-append --save-dev , https://www.npmjs.com/package/gulp-rev-append | |
| sass npm install gulp-sass --save-dev , https://www.npmjs.com/package/gulp-sass | |
| uglify npm install --save-dev gulp-uglify , https://www.npmjs.com/package/gulp-uglify | |
| useref npm install --save-dev gulp-useref , https://www.npmjs.com/package/gulp-useref | |
| wiredep npm install --save wiredep , https://www.npmjs.com/package/wiredep | |
| https://www.npmjs.com/package/gulp-wiredep |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment