0.4.2 • Published 5 years ago

gulp-shopify-sass v0.4.2

Weekly downloads
54
License
MIT
Repository
github
Last release
5 years ago

gulp-shopify-sass Build Status

Concatenate Sass files defined by the @import order

check this for more info. This plugin does the same thing but with gulp.

Installation

install via npm:

npm install gulp-shopify-sass --save-dev

Example

To import a file called _name.scss, there are four ways to do it.

@import 'path-to-file/name';
@import 'path-to-file/_name';
@import 'path-to-file/name.scss';
@import 'path-to-file/_name.scss';

All of above will have the same result.

'use strict';

var gulp = require('gulp');
var gss = require('gulp-shopify-sass');

gulp.task('default', function() {
	return gulp.src('./*.scss')
		.pipe(gss())
		.pipe(gulp.dest('./path/to/dist'));
});

License

MIT license

0.4.2

5 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.3

7 years ago

0.3.2

8 years ago

0.3.1

8 years ago

0.2.1

8 years ago

0.2.0

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