npm install grunt-ria-packgrunt-ria-pack
==========
>gruntplungin js combine
shell
npm install grunt-ria-pack --save-dev
`
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
`js
grunt.loadNpmTasks('grunt-ria-pack');
`
fdserver task
$3
In your project's Gruntfile, add a section named fdserver to the data object passed into grunt.initConfig().
`js
grunt.initConfig({
jscombine: {
default:{
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists
},
}
})
`
$3
#### options.projectName
* stateļ¼specific project name
* Type: String
* Default value: undefined
$3
#### Options
`js
grunt.initConfig({
jscombine: {
default_options: {
options: {
projectName : 'blog7' //projectName
},
files: {
'test/tmp': 'test/'
}
},
},
})
``