1.0.3 • Published 8 years ago

css-sourcemaps-webpack-plugin v1.0.3

Weekly downloads
61
License
MIT
Repository
github
Last release
8 years ago

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})]
}