0.1.1 • Published 10 years ago

sass-bulk-import-loader v0.1.1

Weekly downloads
674
License
MIT
Repository
github
Last release
10 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

10 years ago

0.1.0

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago