grunt-shimly
v1.1.0
Published
Create a shim set using grunt.
Downloads
9
Readme
grunt-shimly
Create a JavaScript shim set using grunt.
List of shims
Usage
grunt.loadNpmTasks('grunt-shimly');
Grunt file config entry:
// ...
shimly: {
// things you would like to shim (an array of items from the list above)
shim: ['Array.filter', 'Function.bind', 'localStorage'],
// output location (relative to your grunt.js file location)
dest: 'build/shims.js',
// minify the output (true or false)
minify: false
},
// ...