forked from elementor/elementor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
129 lines (102 loc) · 3.22 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
module.exports = function( grunt ) {
'use strict';
const fs = require( 'fs' ),
pkgInfo = grunt.file.readJSON( 'package.json' );
require( 'load-grunt-tasks' )( grunt );
// Project configuration
grunt.initConfig( {
pkg: pkgInfo,
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("dd-mm-yyyy") %> */',
checktextdomain: require( './.grunt-config/checktextdomain' ),
usebanner: require( './.grunt-config/usebanner' ),
sass: require( './.grunt-config/sass' ),
postcss: require( './.grunt-config/postcss' ),
watch: require( './.grunt-config/watch' ),
wp_readme_to_markdown: require( './.grunt-config/wp_readme_to_markdown' ),
bumpup: require( './.grunt-config/bumpup' ),
replace: require( './.grunt-config/replace' ),
shell: require( './.grunt-config/shell' ),
release: require( './.grunt-config/release' ),
copy: require( './.grunt-config/copy' ),
clean: require( './.grunt-config/clean' ),
webpack: require( './.grunt-config/webpack' ),
qunit: {
src: 'tests/qunit/index.html',
},
} );
// Default task(s).
grunt.registerTask( 'default', [
'i18n',
'wp_readme_to_markdown',
'scripts',
'styles',
] );
grunt.registerTask( 'i18n', [
'checktextdomain',
] );
grunt.registerTask( 'scripts', ( isDevMode = false ) => {
let taskName = 'webpack:production';
if ( isDevMode ) {
taskName = 'webpack:development';
}
grunt.task.run( taskName );
} );
grunt.registerTask( 'watch_scripts', () => {
grunt.task.run( 'webpack:development' );
} );
grunt.registerTask( 'styles', ( isDevMode = false ) => {
grunt.task.run( 'sass' );
if ( ! isDevMode ) {
grunt.task.run( 'postcss' );
grunt.task.run( 'css_templates' );
}
} );
grunt.registerTask( 'watch_styles', () => {
grunt.task.run( 'watch:styles' );
} );
grunt.registerTask( 'css_templates', () => {
grunt.task.run( 'css_templates_proxy:templates' );
grunt.config( 'sass.dist', {
files: [ {
expand: true,
cwd: 'assets/dev/scss/direction',
src: [ 'frontend.scss', 'frontend-rtl.scss' ],
dest: 'assets/css/templates',
ext: '.css',
} ],
} );
grunt.task.run( 'sass' );
grunt.config( 'postcss.minify.files.0.src', [
'assets/css/templates/*.css',
'!assets/css/templates/*.min.css',
] );
grunt.task.run( 'postcss:minify' );
grunt.task.run( 'css_templates_proxy:values' );
} );
// Writing the proxy file as a grunt task, in order to fit in with the tasks queue
grunt.registerTask( 'css_templates_proxy', ( mode ) => {
fs.writeFileSync( 'assets/dev/scss/frontend/breakpoints/proxy.scss', '@import "' + mode + '";' );
} );
grunt.registerTask( 'build', [
'default',
'usebanner',
'clean',
'copy',
'default', // Remove banners for GitHub
] );
grunt.registerTask( 'publish', ( releaseType ) => {
releaseType = releaseType ? releaseType : 'patch';
var prevStableVersion = 'patch' === releaseType ? pkgInfo.prev_stable_version : pkgInfo.version;
grunt.config.set( 'prev_stable_version', prevStableVersion );
grunt.task.run( 'default' );
grunt.task.run( 'bumpup:' + releaseType );
grunt.task.run( 'replace' );
grunt.task.run( 'shell:git_add_all' );
grunt.task.run( 'release' );
} );
grunt.registerTask( 'test', [
'qunit',
'clean:qunit',
] );
};