Skip to content

Latest commit

 

History

History
57 lines (50 loc) · 1.65 KB

README.md

File metadata and controls

57 lines (50 loc) · 1.65 KB

console-loader

npm GitHub issues GitHub license

Print the resolved request of webpack to the console. Short and simple.

Installation

Install via NPM

npm install console-loader --save-dev

or use directly

require('/path/to/dir/of/console-loader/index.js!/path/to/file.js')

Use and examples

var React = require('console!react')

will display the following in the console when webpack is run:

/path/to/dir/node_modules/console-loader/index.js!/path/to/dir/node_modules/react/react.js

Alternatively,

// es6
import foo from 'console!./foo.js'

or

// In webpack.config
module: {
    loaders: [{
        test: /\.css$/,
        loaders: ["style", "console", "css?sourceMap"]
    }]
}

which will display

/dir/node_modules/console-loader/index.js!/dir/node_modules/css-loader/index.js?sourceMap!/dir/my-file.js

Note that the query is displayed for all the loaders, and that the style loader is missing due to the loader order.

Contributions

Contributions are welcome! Feel free to log an issue or send a pull request if you would like to see options for

  • trimmed output
  • pretty output
  • the source that is passed through the loader
  • something else

Licence

Open Source - ISC - See LICENCE file