Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyleconrad/blank-gulp
Blank project base with Gulp.js as the build system.
https://github.com/kyleconrad/blank-gulp
Last synced: 29 days ago
JSON representation
Blank project base with Gulp.js as the build system.
- Host: GitHub
- URL: https://github.com/kyleconrad/blank-gulp
- Owner: kyleconrad
- Created: 2014-01-18T15:09:59.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T15:28:29.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T12:29:06.501Z (9 months ago)
- Language: SCSS
- Size: 12.4 MB
- Stars: 19
- Watchers: 2
- Forks: 3
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Blank project base with Gulp.js as the build system, Sass for mix-ins and handy CSS pre-processing, HTML templates and modules, and a few other little things (CSS variables, grid classes, etc.) scattered throughout to make preparing a blank website that much easier.
## Local Setup
Running local set up will install all necessary bundles and dependencies and then run a server with BrowserSync. It watches all Sass, JS, templates, and images, then compiles, minifies, concats, uglifies, and reloads accordingly.
$ cd blank-gulp
$ npm install --global gulp-cli
$ npm install
$ gulp## Building
Building will remove all files from the 'build' directory, compile and gzip all CSS, concat and gzip all JS, copy all images, and process and copy all HTML. This will result with the entire site ready in the 'build' directory upon completion.$ cd blank-gulp
$ gulp build