Instant Live Reload on Changes - GulpWatch + Vscode LiveServer
- Browse Live Changes with auto-reload
- Remove Unused Bootstrap Componenets
- Concatinate Multiple Js Files
- Minified Html, CSS, JS
- Scss Work Flow.
- Built-in Media Queries
- Genrates Minified jpg/png & Webp images
- Start Creating @ build/src
- Ready Deploy Files @ build/dist
- It requires Node.js
- Open
/build
Folder inside Code editor (Ideally Vscode). - Install the devDependencies and build the starter package first.
- Now Execute last command for watching changes and auto-compiling.
- Enjoy Coding @
/src
directory!
$ npm install
$ npm run build
$ npm run watch
Edit Files of
/src
folder, output will be in/dist
folder(same root directory)
- To remove Unused Bootstrap components, open
build/src/bstscss/bootstrap.scss
and simply comment out things you donot need. Gulp will take care of building new minified css file atbuild/dist/assets/css
, As Simple As That!!
Gulp + Bootstrap starter is extended with the following plugins.
Plugin | npmjs Links |
---|---|
gulp-csso | Link |
gulp-autoprefixer | Link |
gulp-sass | Link |
node-sass | Link |
gulp-htmlmin | Link |
gulp-concat | Link |
gulp-uglify | Link |
gulp-imagemin | Link |
gulp-webp | Link |
gulp-rename | Link |
Copyright (c) 2019 Krupesh Anadkat
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.