An open API service indexing awesome lists of open source software.

https://github.com/joelburget/jison-loader

jison loader module for webpack
https://github.com/joelburget/jison-loader

Last synced: 3 months ago
JSON representation

jison loader module for webpack

Awesome Lists containing this project

README

        

# jison webpack loader

## Usage

var parser = require("jison!./grammar.jison");
var result = parser.parse(input);

## webpack config

module.exports = {
module: {
loaders: [
{
test: /\.jison$/,
loader: "jison-loader"
}
]
}
}

## License

MIT (http://www.opensource.org/licenses/mit-license.php)