All Projects → sindresorhus → gulp-rework

sindresorhus / gulp-rework

Licence: MIT license
Preprocess CSS with Rework

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to gulp-rework

Gulp Ruby Sass
Compile Sass to CSS with Ruby Sass
Stars: ✭ 476 (+1486.67%)
Mutual labels:  gulp-plugin, deprecated
gulp-styl
Preprocess CSS with Styl
Stars: ✭ 21 (-30%)
Mutual labels:  preprocessor, deprecated
gulp-recess
[DEPRECATED] Lint CSS and LESS with RECESS
Stars: ✭ 42 (+40%)
Mutual labels:  gulp-plugin, deprecated
Gulp Ngmin
[DEPRECATED] Pre-minify AngularJS apps with ngmin
Stars: ✭ 89 (+196.67%)
Mutual labels:  gulp-plugin, deprecated
Gulp Ftp
[DEPRECATED] Upload files to an FTP-server
Stars: ✭ 100 (+233.33%)
Mutual labels:  gulp-plugin, deprecated
Gulp Traceur
Traceur is a JavaScript.next to JavaScript-of-today compiler
Stars: ✭ 172 (+473.33%)
Mutual labels:  gulp-plugin, deprecated
Gulp Vulcanize
Concatenate a set of Web Components into one file
Stars: ✭ 101 (+236.67%)
Mutual labels:  gulp-plugin, deprecated
gulp-es6-transpiler
[DEPRECATED] Transpile ES2015 to ES5
Stars: ✭ 47 (+56.67%)
Mutual labels:  gulp-plugin, deprecated
core-assert
Node.js `assert` as a standalone module
Stars: ✭ 27 (-10%)
Mutual labels:  deprecated
Fortran-Tools
Fortran compilers, preprocessors, static analyzers, transpilers, IDEs, build systems, etc.
Stars: ✭ 31 (+3.33%)
Mutual labels:  preprocessor
papilo
DEPRECATED: Stream data processing micro-framework
Stars: ✭ 24 (-20%)
Mutual labels:  deprecated
generator-pwa-angular-core
Progressive Web App using Angular 4, .NET Core, and Entity Framework
Stars: ✭ 22 (-26.67%)
Mutual labels:  deprecated
flextool
C++ compile-time programming (serialization, reflection, code modification, enum to string, better enum, enum to json, extend or parse language, etc.)
Stars: ✭ 32 (+6.67%)
Mutual labels:  preprocessor
authn
Prototype version of AuthN service. See: keratin/authn-server
Stars: ✭ 34 (+13.33%)
Mutual labels:  deprecated
roweb
⛔ [DEPRECATED] Active at https://github.com/ropensci/roweb2
Stars: ✭ 18 (-40%)
Mutual labels:  deprecated
frontend-starter-kit-with-gulp
Frontend Starter Kit with Gulp for either Themeforest Projects or customizable projects.
Stars: ✭ 34 (+13.33%)
Mutual labels:  preprocessor
cartesian ros control
DEPRECATED: A set of packages to bring Cartesian control functionality to the ROS-control framework.
Stars: ✭ 33 (+10%)
Mutual labels:  deprecated
jscc
Tiny and powerful preprocessor for conditional comments and replacement of compile-time variables in text files
Stars: ✭ 44 (+46.67%)
Mutual labels:  preprocessor
jest-badges-readme
Creates a group of coverage badges from Jest into your README
Stars: ✭ 30 (+0%)
Mutual labels:  deprecated
kubernetes-flexvolume-vault-plugin
A kubernetes flexvolume plugin that injects vault tokens at pod creation
Stars: ✭ 16 (-46.67%)
Mutual labels:  deprecated

Deprecated

The Rework project is no longer maintained.


gulp-rework Build Status

Preprocess CSS with Rework

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

Install

$ npm install --save-dev gulp-rework

Usage

const gulp = require('gulp');
const rework = require('gulp-rework');
const at2x = require('rework-plugin-at2x');

gulp.task('default', () =>
	gulp.src('src/app.css')
		.pipe(rework(at2x(), {sourcemap: true}))
		.pipe(gulp.dest('dist'))
);

API

The compress option from Rework is intentionally missing. A separate task like gulp-csso will do a better job.

rework(plugin, plugin, ..., [options])

Plugins are supplied as arguments.
Optionally supply an object with options as the last argument.

options

Type: Object

sourcemap

Type: boolean
Default: false

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].