0.1.8 • Published 7 years ago

grunt-contrib-sassjs v0.1.8

Weekly downloads
22
License
MIT
Repository
github
Last release
7 years ago

grunt-contrib-sassjs

Build Status npm version

Compile Sass to CSS using sass.js

This task uses sass.js, which is a Sass compiler written in JavaScript. It's not as fast as the C implementation node-sass but it is completely stand alone and doesn't require downloading binaries or installing anything.

Install

$ npm install --save-dev grunt-contrib-sassjs

Usage

grunt.initConfig({
	sass: {
		dist: {
			sourceMap: true,
			files: {
				'main.css': 'main.scss'
			}
		}
	}
});

grunt.registerTask('default', ['sass']);

Files starting with _ are ignored to match the expected Sass partial behaviour.

Options

See the sass.js options.

License

MIT

0.1.8

7 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago