- gulp: run default gulp task (sass, js, watch, browserSync) for web development;
- build: build project to dist folder
- sass: compile scss files
- js: compile js files
- watch: compile scss and js files and start browserSync
- All HTML files should have similar initial content as in app/index.html;
- One of the lines should always be commented out. All fonts are connected in app/sass/fonts.sass;
- Custom Browsers Color Start comment in app/index.html: set the color of the browser head on a variety of devices;
- Custom HTML comment in app/index.html - all your custom HTML;
- For installing new jQuery library, just run the command "bower i plugin-name" in the terminal. Libraries are automatically placed in the folder app/libs. Bower must be installed in the system (npm i -g bower). Then place all jQuery libraries paths in the 'libs' task (gulpfile.js);
- All custom JS located in app/js/common.js;
- All Sass vars placed in app/sass/_vars.scss;
- All media queries placed in app/sass/_media.scss;
- All jQuery libraries CSS styles placed in app/scss/_libs.sass;
- All basic styles (html, body, fonts, buttons, etc...) placed in app/scss/_base.sass;