Compile Imba files with Fly.
npm install --save-dev fly-imba
exports.default = function * (fly) {
yield fly.source('app/**/*.imba')
.imba({
bare: true,
sourceMap: true
})
.target('dist/js');
}
Type: boolean
Default: false
Compile without a top-level function wrapper.
Type: boolean
Default: false
Generate a source map per file. External source maps will be created unless sourceMapInline is specified.
\src
|- app.imba
\dist
|- app.js
|- app.js.map
Type: boolean
Default: false
Embed the file's source mapping as a base64 string. You must set sourceMap to true in order for this setting to work.
MIT © Luke Edwards