Package Exports
- pug-html-loader
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pug-html-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Pug HTML loader for webpack
Installation
npm install pug-html-loader
Usage
In your sources:
var json = require('file.jade')
// => returns file.jade content as html compiled stringIn your karma.conf.js file:
module.exports = {
// your config settings ...
module: [
//your modules...
loaders: [{
include: /\.jade$/,
loader: 'jade-html-loader'
}]
]
};Don't forget to polyfill require if you want to use it in node.
See webpack documentation.