shell-loader

1.2.1 • Public • Published

NPM Status

Shell Loader

A Webpack loader for running arbitrary shell scripts when loading files.

Install

npm install --save-dev shell-loader

Usage

Documentation: Using loaders

Add shell-loader your Webpack configuration object, setting options.script to the shell script you want to run on each file. Example;

module: {
  rules: [
    {
      test: /.*\.css$/,
      use: [ 'css-loader', { loader: 'shell-loader', options: {
        script: 'postcss --use autoprefixer'
      }} ]
    }
  ]
}

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i shell-loader

    Weekly Downloads

    202

    Version

    1.2.1

    License

    MIT

    Unpacked Size

    1.95 kB

    Total Files

    3

    Last publish

    Collaborators

    • josiahsprague