All Projects → sindresorhus → gulp-myth

sindresorhus / gulp-myth

Licence: MIT license
[DEPRECATED] Myth - Postprocessor that polyfills CSS

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to gulp-myth

Gulp Rev
Static asset revisioning by appending content hash to filenames: `unicorn.css` → `unicorn-d41d8cd98f.css`
Stars: ✭ 1,540 (+3848.72%)
Mutual labels:  gulp-plugin
Gulp Compass
Compass plugin for gulp
Stars: ✭ 177 (+353.85%)
Mutual labels:  gulp-plugin
gulp-upload-qcloud
腾讯云 cos 静态资源上传 gulp 插件
Stars: ✭ 18 (-53.85%)
Mutual labels:  gulp-plugin
Gulp Nunjucks
Precompile Nunjucks templates
Stars: ✭ 143 (+266.67%)
Mutual labels:  gulp-plugin
Gulp Markdown
Markdown to HTML
Stars: ✭ 167 (+328.21%)
Mutual labels:  gulp-plugin
Gulp Html Replace
Replace build blocks in HTML. Like useref but done right.
Stars: ✭ 222 (+469.23%)
Mutual labels:  gulp-plugin
Gulp Modernizr
Gulp wrapper for custom Modernizr builds
Stars: ✭ 111 (+184.62%)
Mutual labels:  gulp-plugin
gulp-sort
Sort files in stream by path or any custom sort comparator
Stars: ✭ 22 (-43.59%)
Mutual labels:  gulp-plugin
Gulp Traceur
Traceur is a JavaScript.next to JavaScript-of-today compiler
Stars: ✭ 172 (+341.03%)
Mutual labels:  gulp-plugin
Gulp Strip Debug
Strip console, alert, and debugger statements from JavaScript code
Stars: ✭ 242 (+520.51%)
Mutual labels:  gulp-plugin
Gulp Stylelint
Gulp plugin for running Stylelint results through various reporters.
Stars: ✭ 149 (+282.05%)
Mutual labels:  gulp-plugin
Gulp Tap
Easily tap into a gulp pipeline without creating a plugin.
Stars: ✭ 158 (+305.13%)
Mutual labels:  gulp-plugin
Gulp Debug
Debug Vinyl file streams to see what files are run through your Gulp pipeline
Stars: ✭ 223 (+471.79%)
Mutual labels:  gulp-plugin
Glup
Some of the gulp tutorial -《gulp笔记》
Stars: ✭ 136 (+248.72%)
Mutual labels:  gulp-plugin
gulp-spsync-creds
Gulp plugin for synchronizing local files with a SharePoint library via user credentials
Stars: ✭ 12 (-69.23%)
Mutual labels:  gulp-plugin
Gulp Bro
👊 gulp + browserify + incremental build, done right.
Stars: ✭ 119 (+205.13%)
Mutual labels:  gulp-plugin
Gulp Webp
Convert images to WebP
Stars: ✭ 187 (+379.49%)
Mutual labels:  gulp-plugin
gulp-cssbeautify
Reindent and reformat CSS
Stars: ✭ 18 (-53.85%)
Mutual labels:  gulp-plugin
gulp-xo
Validate files with XO
Stars: ✭ 37 (-5.13%)
Mutual labels:  gulp-plugin
Gulp Size
Display the size of your project
Stars: ✭ 225 (+476.92%)
Mutual labels:  gulp-plugin

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].