Wraps text files
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-wrap
Then add this line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-wrap');
Configure which files to be copied in your initConfig
:
grunt.initConfig({
// ... other configs
// wrap my modules with define
wrap: {
modules: {
src: ['assets/*.js'],
dest: 'dist/',
wrapper: ['define(function (require, exports, module) {\n', '\n});']
}
},
// ... other configs
});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
- 2012 Oct 4 - v0.1.0 - Initial release.
Copyright (c) 2012 Christopher Rogers Licensed under the MIT license.