0.0.1 • Published 10 years ago

gulp-australian-stylesheets v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

gulp-australian-stylesheets Build Status

Compile Australian CSS with postcss-australian-stylesheets

Issues with the output should be reported on the australian-stylesheets issue tracker.

Install

$ npm install --save-dev gulp-australian-stylesheets

Usage

var gulp = require('gulp');
var ozcss = require('gulp-australian-stylesheets');

gulp.task('default', function () {
	return gulp.src('src/app.css')
		.pipe(ozcss())
		.pipe(gulp.dest('dist'));
});

Source Maps

Use gulp-sourcemaps like this:

var gulp = require('gulp');
var sourcemaps = require('gulp-sourcemaps');
var ozcss = require('gulp-australian-stylesheets');
var concat = require('gulp-concat');

gulp.task('default', function () {
	return gulp.src('src/**/*.css')
		.pipe(sourcemaps.init())
		.pipe(ozcss())
		.pipe(concat('all.css'))
		.pipe(sourcemaps.write('.'))
		.pipe(gulp.dest('dist'));
});

License

MIT © Steve Mao