Grunt task for Chalkboard
This plugin requires Grunt ~0.4.1
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-chalkboard --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-chalkboard');
In your project's Gruntfile, add a section named chalkboard
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
chalkboard: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
})
Type: String
Default value: linefeed
Concatenated files will be joined on this string.
grunt.initConfig({
chalkboard: {
options: {},
files: {
'dest/output.md': ['src/file1.coffee', 'src/file2.coffee'],
},
},
})
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.
- 2014-08-17 v0.3.0 Updated Chalkboard to v0.5.1
- 2014-04-30 v0.2.3 Updated Chalkboard to v0.4.4
- 2013-12-17 v0.2.2 Updated Chalkboard to v0.4.3
- 2013-11-26 v0.2.1 Updated Chalkboard to v0.4.2
- 2013-06-03 v0.1.0 Initial working commit.