Licence
MIT
Version
0.1.1
Deps
1
Size
4 kB
Vulns
0
Weekly
0
yu-loader
A Yu loader for MaJs. Compiles MaJs to JS.
Getting Started
To begin, you'll need to install yu-loader:
$ npm install yu-loader --save-dev
Then add the loader to your webpack config. For example:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.ma(\.js)?$/i,
loader: "yu-loader",
},
],
},
};
And run webpack via your preferred method.