Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/collardeau/miel-loader
Miel loader module for webpack
https://github.com/collardeau/miel-loader
Last synced: about 2 months ago
JSON representation
Miel loader module for webpack
- Host: GitHub
- URL: https://github.com/collardeau/miel-loader
- Owner: collardeau
- Created: 2015-07-21T11:00:41.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-21T16:07:56.000Z (over 9 years ago)
- Last Synced: 2024-11-06T23:14:48.600Z (about 2 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# miel-loader
Miel loader module for webpackSee [Miel](https://github.com/collardeau/miel) repo for more information on Miel syntax.
## Install
```javascript
npm install miel-loader --save-dev
```
or simply
```javascript
npm i miel-loader -D
```## Usage
```javascript
// in webpack.config.jsmodule: {
loaders: [
{ test: /\.js$/, loader: "miel-loader" }
]
}```
or in combination with Babel (order matters):```javascript
module: {
loaders: [
{ test: /\.js$/, loaders: ['babel', 'miel'], exclude: /node_modules/}
]
}```