css-sourcemaps-webpack-plugin

1.0.3 • Public • Published

CSS Sourcemap Webpack Plugin

npm version Dependency Status Build status

This is a webpack plugin that simplifies the usage of CSS source maps.

Installation

Install the plugin with npm:

$ npm install css-sourcemaps-webpack-plugin --save-dev

Usage

var CssSourcemapPlugin = require('css-sourcemaps-webpack-plugin');
module.exports = {
  entry: 'index.js',
  output: {
    path: 'dist',
    filename: 'index_bundle.js'
  },
  module: {
    loaders: [
      { test: /\.less$/, loader: 'style!css!less' }
    ]
  },
  plugins: [new CssSourcemapPlugin()]
}

Production

You can easily disable the plugin for your production build:

var CssSourcemapPlugin = require('css-sourcemaps-webpack-plugin');
module.exports = {
  entry: 'index.js',
  output: {
    path: 'dist',
    filename: 'index_bundle.js'
  },
  module: {
    loaders: [
      { test: /\.scss$/, loader: 'style!css!sass' }
    ]
  },
  plugins: [new CssSourcemapPlugin({disable: true})]
}

Package Sidebar

Install

npm i css-sourcemaps-webpack-plugin

Weekly Downloads

2

Version

1.0.3

License

MIT

Last publish

Collaborators

  • jantimon