ion-loader
v0.0.1
Published
A webpack loader for the ion language
Readme
ion-loader
A webpack loader for the ion language.
Install
npm install ion-loader --saveUsage
Right on the require:
var file = require("ion!./file.ion")Webpack config (better):
{
module: {
loaders: [
{ test: /\.ion$/, loader: 'ion' }
]
}
}