0.1.4 • Published 4 years ago

@jdrunken/style v0.1.4

Weekly downloads
5
License
ISC
Repository
github
Last release
4 years ago

@jdrunken/style

  • normalize style in scss file

using

in your project

type sass

@import './node_modules/@jdrunken/style/index.scss';

type css

@import './node_modules/@jdrunken/style/index.css';

with gulp.js@4.0

convert with node-scss

// gulpfile.js example
const sass = require('gulp-sass') // css pre-processor

function css () {
  return src([
      'node_modules/@jdrunken/style/index.scss',
      'path/to/your/css/**.scss'
    ])
    .pipe(sass())
    .pipe(dest(path.dist))
}

export.css = css