Matt Holt
10 years ago
4 changed files with 23 additions and 3 deletions
@ -0,0 +1,18 @@
@@ -0,0 +1,18 @@
|
||||
module.exports = function(grunt) { |
||||
grunt.initConfig({ |
||||
uglify: { |
||||
options: { |
||||
preserveComments: 'some', |
||||
}, |
||||
min: { |
||||
files: { |
||||
'papaparse.min.js': ['papaparse.js'] |
||||
}, |
||||
}, |
||||
}, |
||||
}); |
||||
|
||||
grunt.loadNpmTasks('grunt-contrib-uglify'); |
||||
|
||||
grunt.registerTask('build', ['uglify']); |
||||
} |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue