0.0.1 • Published 9 years ago

gulp-polymerize-css v0.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
9 years ago

Gulp polimerize css

Gulp plugin that transforms css files into .html files with a dom-module with the styles.

It was written to convert css into style modules, as specified by polymer docs.

Makes life easier for those who want to use css preprocessors AND Polymer :)

Usage

Install it with npm

npm install gulp-polymerize-css

In your gulpfile.js:

var polymerizeCss = require('gulp-polymerize-css'),
    rename = require('gulp-rename');

gulp.task('styles', function(){
  return gulp.src('app/styles/style.css')
    .pipe(polymerizeCss({styleId:'custom-style'}))
    .pipe(rename('style.html'))
    .pipe(gulp.dest('dist/styles'));
});

It results in:

<dom-module id="custom-style">
  <template>
    <style>
     <!-- YOUR STYLE HERE -->
    </style>
  </template>
</dom-module>

Options

  • styleId (String): the id that you will use for importing the style