Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.

Latest commit

 

History

History
56 lines (31 loc) · 951 Bytes

readme.md

File metadata and controls

56 lines (31 loc) · 951 Bytes

Deprecated

Deprecated as the Myth project is no longer maintained.


gulp-myth Build Status

Myth - Postprocessor that polyfills CSS

Issues with the output should be reported on the Myth issue tracker.

Install

$ npm install --save-dev gulp-myth

Usage

var gulp = require('gulp');
var myth = require('gulp-myth');

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

API

myth(options)

options.sourcemap

Type: boolean Default: false

Embed a Source Map.

options.browsers

Type: array

Browsers and versions to support.

License

MIT © Sindre Sorhus