Ohm loader for webpack
npm install --save-dev ohm-loader
webpack.config.js
{
module: {
rules: [{
test: /\.ohm$/,
loader: 'ohm-loader'
}]
}
}
file.js
import grammar from 'file.ohm'
grammar.match(...);
or if the file contains more than one grammar
import {CSV, Json} from 'file.ohm'
CSV.match(...);