https://github.com/pgilad/jade-loader2
A sane jade loader module for webpack
https://github.com/pgilad/jade-loader2
Last synced: about 2 months ago
JSON representation
A sane jade loader module for webpack
- Host: GitHub
- URL: https://github.com/pgilad/jade-loader2
- Owner: pgilad
- Created: 2015-07-14T08:35:16.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-12-29T11:22:46.000Z (over 9 years ago)
- Last Synced: 2025-10-30T22:23:58.482Z (7 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jade-loader2
> Webpack new and improved jade loader
## Install
```sh
$ npm install jade-loader2 --save-dev
```
## Setup
In your webpack config:
```js
var webpackConfig = {
// ...
module: {
loaders: [
//...
{
test: /\.jade$/,
exclude: [/node_modules/],
loaders: ['jade-loader2'],
},
// ...
],
},
// ...
};
```
## License
MIT ©[Gilad Peleg](http://giladpeleg.com)