Grunt task to collect license information of dependencies used in a RequireJS project.
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-requirejs-license --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-requirejs-license');
In your project's Gruntfile, add a section named requirejs_license
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
requirejs: {
....
requirejs_target:{
...
}
},
requirejs_license: {
options: {
// Task-specific options go here.
},
named_your_target_the_same_as_requirejs: {
// Target-specific options go here.
}
}
})
Type: String
Default value: licenses
A string value that is used to license filename extension
In this example, default options are used to output files with the extension ".license".
grunt.initConfig({
requirejs : {
...
compile : {
...
//your requirejs options
}
},
requirejs_license: {
options: {
},
compile: {
},
}
})
In this example, custom options are used to output files with the extension ".lic".
grunt.initConfig({
requirejs : {
...
compile : {
...
//your requirejs options
}
},
requirejs_license: {
options: {
extension : 'lic'
},
compile: {
},
},
})
v0.1.0 Initial release.