0.1.1 • Published 9 years ago

sass-bulk-import-loader v0.1.1

Weekly downloads
674
License
MIT
Repository
github
Last release
9 years ago

sass-bulk-import-loader

This loader for Webpack is based on gulp-sass-bulk-import by Matthew Conlen

installation

npm install --save-dev sass-bulk-import-loader

usage

@import "some/path/*";

// becomes
// @import "some/path/file1.scss";
// @import "some/path/file2.scss";
// ...

then add loader to require call

require('css!sass!sass-bulk-import!./styles.scss');

or webpack config

      {
        test: /\.scss$/,
        loader: 'style!css!sass!sass-bulk-import'
      }

enjoy

0.1.1

9 years ago

0.1.0

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago