# photonic/3.34/grunt/Gruntfile.js

Photonic Gallery &amp; Lightbox for Flickr, SmugMug &amp; Others, version 3.34. 147 lines.

- Page: https://pluginprobe.com/plugins/photonic/3.34/code/grunt/Gruntfile.js
- Raw: https://pluginprobe.com/plugins/photonic/3.34/raw/grunt/Gruntfile.js
- Modified: 2023-04-05T23:55:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/photonic/3.34/code/grunt/Gruntfile.js#L10-L20`.

```javascript
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);
};

```
