roadshow-grunt
v0.3.2
Published
Grunt plugin for pre-compiling Roadshow components
Downloads
3
Readme
roadshow-brunch.js
Grunt plugin for pre-compiling RoadShow components
Usage
Install grunt
and this plugin as project dependencies:
npm install --save-dev grunt roadshow-grunt
Configuration
This plugin requires minimal setup. Just declare the path to your Roadshow components:
module.exports=function(grunt) {
grunt.initConfig({
roadshow:{
files:{
src:'<source-folder>/*',
dest:'<destination-folder>/app.js'
}
}
});
grunt.loadNpmTasks('roadshow-grunt');
grunt.registerTask('default',['roadshow']);
};
MIT License | Copyright © 2019 Bong Cosca | All rights reserved