first commit
This commit is contained in:
27
web-app/node_modules/papaparse/Gruntfile.js
generated
vendored
Normal file
27
web-app/node_modules/papaparse/Gruntfile.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
module.exports = function(grunt) {
|
||||
grunt.initConfig({
|
||||
uglify: {
|
||||
options: {
|
||||
compress: {
|
||||
global_defs: {
|
||||
'PAPA_BROWSER_CONTEXT': true
|
||||
},
|
||||
dead_code: true
|
||||
},
|
||||
output: {
|
||||
comments: 'some',
|
||||
},
|
||||
},
|
||||
min: {
|
||||
files: {
|
||||
'papaparse.min.js': ['papaparse.js']
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
grunt.loadNpmTasks('grunt-contrib-uglify');
|
||||
|
||||
grunt.registerTask('build', ['uglify']);
|
||||
grunt.registerTask('default', ['uglify']);
|
||||
};
|
||||
Reference in New Issue
Block a user