https://github.com/danielfgray/gulp-boilerplate
basically just a gulpfile
https://github.com/danielfgray/gulp-boilerplate
babel boilerplate browserify eslint gulp postcss stylelint
Last synced: 2 months ago
JSON representation
basically just a gulpfile
- Host: GitHub
- URL: https://github.com/danielfgray/gulp-boilerplate
- Owner: DanielFGray
- License: wtfpl
- Created: 2017-02-19T00:17:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-19T00:35:45.000Z (over 9 years ago)
- Last Synced: 2025-01-24T02:34:41.103Z (over 1 year ago)
- Topics: babel, boilerplate, browserify, eslint, gulp, postcss, stylelint
- Language: JavaScript
- Homepage:
- Size: 54.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-boilerplate
Basically just a `gulpfile`.
## Features
* linting via [eslint](http://eslint.org/) and [stylelint](https://stylelint.io)
* includes [airbnb-base](https://www.npmjs.com/package/eslint-config-airbnb-base) and [stylelint-config-standard](https://www.npmjs.com/package/stylelint-config-standard)
* compiles JavaScript with [Babel](https://babeljs.io) and uses [Browserify](https://www.npmjs.com/package/browserify) to translate `require()`d modules
* includes the [Babel ES2015 preset](https://npmjs.com/package/babel-preset-es2015)
* compiles CSS with [PostCSS](http://postcss.org)
* includes [cssnext](https://cssnext.io) and [nested](https://www.npmjs.com/package/postcss-nested) plugins
* separate minified files via [uglify](https://www.npmjs.com/package/uglify) and [cssnano](https://www.npmjs.com/package/cssnano)
* also builds separate sourcemap files
## Why?
* You want to write code and not waste time dealing with build tools
* You don't want to deal with Webpack
* You're not using React and don't need hot-module-reloading
* This should still work with React though