1.0.1 • Published 8 years ago

postcss-flexadapter v1.0.1

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

#postcss-flexadapter

NPM

##Introduce

##Install 当然,你需要先安装gulp

$ npm install --global gulp

然后安装插件。

//全局安装
$ npm install --global postcss-flexadapter

//局部安装
$ npm install --save-dev postcss-flexadapter

##Usage

gulp.task('default', function() {
	var processors = [
		flexadapter
  	];
	gulp.src('./style.css')
	    .pipe(postcss(processors))
	    .pipe(gulp.dest('build/'));
});