raw-loader-bump

v0.0.3
A loader for webpack that allows importing files as a String

npm node deps [![tests][tests]][tests-url] chat

raw-loader

A loader for webpack that allows importing files as a String.

Requirements

This module requires a minimum of Node v6.9.0 and Webpack v4.0.0.

Getting Started

To begin, you'll need to install raw-loader:

$ npm install raw-loader --save-dev

Then add the loader to your webpack config. For example:

import txt from './file.txt';
// webpack.config.js
module.exports = {
  module: {
    rules: [
      {
        test: /\.txt$/,
        use: 'raw-loader'
      }
    ]
  }
}

Or from the command-line:

$ webpack --module-bind 'txt=raw-loader'

And run webpack via your preferred method.

License

MIT

[tests]: https://img.shields.io/circleci/project/github/webpack-contrib/raw-loader.svg [tests-url]: https://circleci.com/gh/webpack-contrib/raw-loader

npm i raw-loader-bump

Metadata

  • MIT
  • >= 6.9.0
  • Tobias Koppers @sokra
  • released 9/7/2018

Downloads

Maintainers