Lint
This commit is contained in:
parent
eb782a6277
commit
7d12ae6907
1 changed files with 33 additions and 31 deletions
|
@ -1,7 +1,8 @@
|
||||||
/*jslint node: true */
|
/*jslint node: true */
|
||||||
module.exports = function (grunt) {
|
module.exports = function (grunt) {
|
||||||
'use strict';
|
'use strict';
|
||||||
grunt.initConfig({
|
grunt.initConfig(
|
||||||
|
{
|
||||||
uglify: {
|
uglify: {
|
||||||
combine: {
|
combine: {
|
||||||
files: {
|
files: {
|
||||||
|
@ -37,7 +38,8 @@ module.exports = function (grunt) {
|
||||||
src: ['Gruntfile.js']
|
src: ['Gruntfile.js']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
|
);
|
||||||
|
|
||||||
grunt.loadNpmTasks('grunt-contrib-uglify');
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
||||||
grunt.loadNpmTasks('grunt-contrib-cssmin');
|
grunt.loadNpmTasks('grunt-contrib-cssmin');
|
||||||
|
|
Loading…
Reference in a new issue