0.1.1 • Published 8 years ago

gulp-css2jsmap v0.1.1

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

gulp-css2jsmap

Getting Started

you may install this plugin with this command:

npm install gulp-css2jsmap --save-dev

##Setup

Once the plugin has been installed, it may be enabled inside your gulpfile with this line of JavaScript:

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


gulp.task('gen:stylejs', ['gen:css'], function() {
    return gulp.src('src/skins/**/*.css')
        .pipe(css2jsmap({
	        prefix: 'var colorsStyle = ',
            path: "colorstyle.js",
        }))
        .pipe(gulp.dest('src/content'));
})

##Options

Plugin options are:

PropertyNecessaryTypePlugin default value
prefixno'String''var css2jsmap = '
suffixno'String'';'
pathyes'String'undefined

##Generated

var css2jsmap = {
	"filename1": "file contennt 1",
	"filename2": "file contennt 2",
	// ...

};

##Demo see the cozhihu project.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Gulp.

License

Copyright (c) 2016 Terry Cai. Licensed under the MIT license.