WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
plugins
/
auto
/
palette
/
v4.1.1
/
lib
/
tinyColorPicker
/
Name
Action
..
Gruntfile.js
Edit
LICENSE.md
Edit
README.md
Edit
bower.json
Edit
colors.js
Edit
demo
development
index.css
Edit
index.html
Edit
index.js
Edit
jqColorPicker.js
Edit
jqColorPicker.js.map
Edit
jqColorPicker.min.js
Edit
package.json
Edit
Editing: Gruntfile.js
module.exports = function(grunt) { // Project configuration. grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), uglify: { options: { banner: '/*! <%= pkg.name %> - v<%= pkg.version %> <%= grunt.template.today("yyyy-mm-dd") %> */\n', sourceMap: true, // sourceMapIncludeSources: true, sourceMapName: 'jqColorPicker.js.map', report: 'gzip' }, my_target: { files: [{ 'jqColorPicker.min.js': ['colors.js', 'jqColorPicker.js'] }] } } }); // Load the plugin that provides the "uglify" task. grunt.loadNpmTasks('grunt-contrib-uglify'); // Default task(s). grunt.registerTask('default', ['uglify']); };