Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/telecta/gulpzilla-sass
Sass setup for gulpzilla
https://github.com/telecta/gulpzilla-sass
Last synced: 2 days ago
JSON representation
Sass setup for gulpzilla
- Host: GitHub
- URL: https://github.com/telecta/gulpzilla-sass
- Owner: telecta
- Created: 2016-06-13T10:57:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-09T12:28:24.000Z (over 8 years ago)
- Last Synced: 2024-11-11T05:46:59.266Z (about 1 month ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gulpzilla-jest
This adds 2 gulp commands to [gulpzilla](https://github.com/blacktangent/gulpzilla):
1. `gulp sass`
2. `gulp watch-sass`## Install
```
$ gem install sass # sass compilation is using sass rubygem
$ npm install --save-dev gulpzilla-sass
```## Configuration
In `gulpfile.js`:```
const gulp = gulpzilla({
sass: {
srcDir: __dirname+'/src/sass', // sass source files
target: __dirname+'/src/sass/style.scss', // sass entry pointdistDir: __dirname+'/public/css', // destination directory for compiled css
distFilename: 'bundle.css', // destination filename for compiled cssloadPaths: [ './vendor/bower_components/bootstrap-sass-official/assets/stylesheets',
'./vendor/bower_components/fontawesome/scss'], // additional load paths
}
});
```