https://github.com/cheft/coala-dot-loader
coala.js & dot.js webpack loader
https://github.com/cheft/coala-dot-loader
Last synced: 11 months ago
JSON representation
coala.js & dot.js webpack loader
- Host: GitHub
- URL: https://github.com/cheft/coala-dot-loader
- Owner: cheft
- License: mit
- Created: 2016-12-08T07:38:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-23T06:40:15.000Z (about 9 years ago)
- Last Synced: 2025-06-23T04:38:07.949Z (12 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [dot](https://github.com/olado/doT) loader for [webpack](http://webpack.github.io/)
## Usage
[Documentation: Using loaders](http://webpack.github.io/docs/using-loaders.html)
``` javascript
var template = require("coala-dot!./file.html");
// => returns file.html compiled as template function
```
### Recommended config
``` javascript
module.exports = {
module: {
loaders: [
{ test: /\.html$/, loader: "coala-dot-loader" }
]
}
};
```