wrap-loader
Add custom content before and after the loaded source.
Last updated 9 years ago by unindented .
Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install wrap-loader 
SYNC missed versions from official npm registry.

Wrap loader for webpack Version Build Status

Adds custom content before and after the loaded source.

Installation

$ npm install --save wrap-loader

Usage

Documentation: Using loaders

In your webpack.config.js file:

module.exports = {
  module: {
    loaders: [{
      test:   /\.less$/,
      loader: 'style!css!less!wrap?less'
    }]
  },

  wrap: {
    less: {
      before: [
        '@import "~bootstrap/less/variables.less";',
        '@import "~bootstrap/less/mixins.less";'
      ],
      after: '@import "~utils/debug.less";'
    }
  }
};

Meta

Contributors

License

Copyright (c) 2014 Daniel Perez Alvarez (unindented.org). This is free software, and may be redistributed under the terms specified in the LICENSE file.

Current Tags

  • 0.2.0                                ...           latest (9 years ago)

4 Versions

  • 0.2.0                                ...           9 years ago
  • 0.1.0                                ...           11 years ago
  • 0.0.2                                ...           11 years ago
  • 0.0.1                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (1)
Dev Dependencies (8)

Copyright 2013 - present © cnpmjs.org | Home |