hello-theme/Gruntfile.js
Rami Yushuvaev d68f854f7a
Tweak: Remove upsell messages for Elementor v3.0.12 and bellow [ED-11459] (#308)
* Use correct theme name

* Tweak: Remove upsell messages for Elementor v3.0.12 and bellow
2023-07-20 14:32:40 +03:00

138 lines
2.2 KiB
JavaScript

/**
* Hello Elementor theme Makefile
*/
'use strict';
module.exports = function( grunt ) {
require( 'load-grunt-tasks' )( grunt );
const sass = require( 'sass' );
// Project configuration.
grunt.initConfig( {
pkg: grunt.file.readJSON( 'package.json' ),
sass: {
options: {
implementation: sass,
},
dist: {
files: 'production' === grunt.option( 'environment' ) ? [ {
expand: true,
cwd: 'assets/scss',
src: '*.scss',
dest: './build',
ext: '.css',
} ] : [ {
expand: true,
cwd: 'assets/scss',
src: '*.scss',
dest: './',
ext: '.css',
} ],
},
},
postcss: {
dev: {
options: {
//map: true,
processors: [
require( 'autoprefixer' )(),
],
},
files: [ {
src: [
'*.css',
'!*.min.css',
],
} ],
},
minify: {
options: {
processors: [
require( 'autoprefixer' )(),
require( 'cssnano' )( {
reduceIdents: false,
zindex: false,
} ),
],
},
files: [ {
expand: true,
src: 'production' === grunt.option( 'environment' ) ? [
'build/*.css',
'!build/*.min.css',
] : [
'*.css',
'!*.min.css',
],
ext: '.min.css',
} ],
},
},
watch: {
styles: {
files: [
'assets/scss/**/*.scss',
],
tasks: [ 'styles' ],
},
},
checktextdomain: {
options: {
text_domain: 'hello-elementor',
correct_domain: true,
keywords: [
// WordPress keywords
'__:1,2d',
'_e:1,2d',
'_x:1,2c,3d',
'esc_html__:1,2d',
'esc_html_e:1,2d',
'esc_html_x:1,2c,3d',
'esc_attr__:1,2d',
'esc_attr_e:1,2d',
'esc_attr_x:1,2c,3d',
'_ex:1,2c,3d',
'_n:1,2,4d',
'_nx:1,2,4c,5d',
'_n_noop:1,2,3d',
'_nx_noop:1,2,3c,4d',
],
},
files: {
src: [
'**/*.php',
'!docs/**',
'!bin/**',
'!node_modules/**',
'!build/**',
'!tests/**',
'!.github/**',
'!vendor/**',
'!*~',
],
expand: true,
},
},
} );
grunt.registerTask( 'i18n', [
'checktextdomain',
] );
grunt.registerTask( 'styles', [
'sass',
'postcss',
] );
// Default task(s).
grunt.registerTask( 'default', [
'i18n',
'styles',
] );
};