1
1
/*jshint node:true */
2
- module . exports = function ( grunt ) {
2
+ module . exports = function ( grunt ) {
3
3
'use strict' ;
4
-
4
+
5
5
const sass = require ( 'sass' ) ;
6
6
7
7
const isProduction = process . env . NODE_ENV === 'production' ;
8
8
const mode = isProduction ? 'production' : 'development' ;
9
9
const makeSourceMaps = mode === 'development' ;
10
-
11
- grunt . initConfig ( {
12
10
11
+ grunt . initConfig ( {
13
12
// Gets the package vars
14
- pkg : grunt . file . readJSON ( 'package.json' ) ,
13
+ pkg : grunt . file . readJSON ( 'package.json' ) ,
15
14
16
15
// Setting folder templates
17
16
dirs : {
18
17
css : 'assets/css' ,
19
18
fonts : 'assets/fonts' ,
20
19
images : 'assets/images' ,
21
- js : 'assets/js'
20
+ js : 'assets/js' ,
22
21
} ,
23
22
24
23
// Compile all .scss files.
25
24
sass : {
26
25
compile : {
27
26
options : {
28
27
sourceMap : makeSourceMaps ,
29
- implementation : sass
28
+ implementation : sass ,
30
29
} ,
31
- files : [ {
32
- expand : true ,
33
- cwd : '<%= dirs.css %>/' ,
34
- src : [ '**/*.scss' ] ,
35
- dest : '<%= dirs.css %>/' ,
36
- ext : '.min.css'
37
- } ]
38
- }
30
+ files : [
31
+ {
32
+ expand : true ,
33
+ cwd : '<%= dirs.css %>/' ,
34
+ src : [ '**/*.scss' ] ,
35
+ dest : '<%= dirs.css %>/' ,
36
+ ext : '.min.css' ,
37
+ } ,
38
+ ] ,
39
+ } ,
39
40
} ,
40
41
41
42
// Minify all .css files.
42
43
cssmin : {
43
44
options : {
44
- sourceMap : makeSourceMaps
45
+ sourceMap : makeSourceMaps ,
45
46
} ,
46
47
minify : {
47
48
expand : true ,
48
49
cwd : '<%= dirs.css %>/' ,
49
- src : [
50
- '**/*.css' ,
51
- ] ,
50
+ src : [ '**/*.css' ] ,
52
51
dest : '<%= dirs.css %>/' ,
53
- ext : '.min.css'
54
- }
52
+ ext : '.min.css' ,
53
+ } ,
55
54
} ,
56
55
57
56
// Transpile ES6 to ES5
@@ -72,49 +71,49 @@ module.exports = function( grunt ) {
72
71
] ,
73
72
} ,
74
73
dist : {
75
- files : [ {
76
- expand : true ,
77
- cwd : '<%= dirs.js %>/' ,
78
- src : [
79
- '**/*.js' ,
80
- ] ,
81
- dest : '<%= dirs.js %>/ ' ,
82
- ext : '.min.js'
83
- } ]
84
- }
74
+ files : [
75
+ {
76
+ expand : true ,
77
+ cwd : '<%= dirs.js %>/' ,
78
+ src : [ '**/*.js' ] ,
79
+ dest : '<%= dirs.js %>/' ,
80
+ ext : '.min.js ' ,
81
+ } ,
82
+ ] ,
83
+ } ,
85
84
} ,
86
85
87
86
// Watch changes for assets
88
87
watch : {
89
88
js : {
90
89
files : [
91
90
'<%= dirs.js %>/**/*.js' ,
92
- '!<%= dirs.js %>/**/*.min.js'
91
+ '!<%= dirs.js %>/**/*.min.js' ,
93
92
] ,
94
- tasks : [ 'babel' ]
93
+ tasks : [ 'babel' ] ,
95
94
} ,
96
95
sass : {
97
96
files : [ '<%= dirs.css %>/**/*.scss' ] ,
98
97
tasks : [ 'sass' , 'cssmin' ] ,
99
- }
98
+ } ,
100
99
} ,
101
100
102
101
// Shell scripts
103
102
shell : {
104
103
options : {
105
104
stdout : true ,
106
- stderr : true
105
+ stderr : true ,
107
106
} ,
108
107
txpull : {
109
108
command : [
110
109
'tx pull -a -f' , // Transifex download .po files
111
- ] . join ( '&&' )
110
+ ] . join ( '&&' ) ,
112
111
} ,
113
112
txpush : {
114
113
command : [
115
- 'tx push -s' // Transifex - send .pot file
116
- ] . join ( '&&' )
117
- }
114
+ 'tx push -s' , // Transifex - send .pot file
115
+ ] . join ( '&&' ) ,
116
+ } ,
118
117
} ,
119
118
120
119
// Generate POT files.
@@ -123,25 +122,22 @@ module.exports = function( grunt ) {
123
122
type : 'wp-plugin' ,
124
123
domainPath : 'i18n/languages' ,
125
124
potHeaders : {
126
- 'report-msgid-bugs-to' : 'https://wordpress.org/support/plugin/woocommerce-square' ,
127
- 'language-team' : 'LANGUAGE <EMAIL@ADDRESS>'
128
- }
125
+ 'report-msgid-bugs-to' :
126
+ 'https://wordpress.org/support/plugin/woocommerce-square' ,
127
+ 'language-team' : 'LANGUAGE <EMAIL@ADDRESS>' ,
128
+ } ,
129
129
} ,
130
130
dist : {
131
131
options : {
132
132
potFilename : 'woocommerce-square.pot' ,
133
- exclude : [
134
- 'apigen/.*' ,
135
- 'tests/.*' ,
136
- 'tmp/.*'
137
- ]
138
- }
139
- }
133
+ exclude : [ 'apigen/.*' , 'tests/.*' , 'tmp/.*' ] ,
134
+ } ,
135
+ } ,
140
136
} ,
141
137
142
138
// Check textdomain errors.
143
139
checktextdomain : {
144
- options :{
140
+ options : {
145
141
text_domain : 'woocommerce-square' ,
146
142
keywords : [
147
143
'__:1,2d' ,
@@ -157,57 +153,45 @@ module.exports = function( grunt ) {
157
153
'_n:1,2,4d' ,
158
154
'_nx:1,2,4c,5d' ,
159
155
'_n_noop:1,2,3d' ,
160
- '_nx_noop:1,2,3c,4d'
161
- ]
156
+ '_nx_noop:1,2,3c,4d' ,
157
+ ] ,
162
158
} ,
163
159
files : {
164
- src : [
165
- '**/*.php' , // Include all files
166
- '!apigen/**' , // Exclude apigen/
160
+ src : [
161
+ '**/*.php' , // Include all files
162
+ '!apigen/**' , // Exclude apigen/
167
163
'!node_modules/**' , // Exclude node_modules/
168
- '!tests/**' , // Exclude tests/
169
- '!vendor/**' , // Exclude vendor/
170
- '!tmp/**' , // Exclude tmp/
171
- '!test-plugins/**' // Exclude test-plugins/
164
+ '!tests/**' , // Exclude tests/
165
+ '!vendor/**' , // Exclude vendor/
166
+ '!tmp/**' , // Exclude tmp/
167
+ '!test-plugins/**' , // Exclude test-plugins/
172
168
] ,
173
- expand : true
174
- }
169
+ expand : true ,
170
+ } ,
175
171
} ,
176
172
} ) ;
177
173
178
174
// Load NPM tasks to be used here
179
- grunt . loadNpmTasks ( 'grunt-sass' ) ;
180
- grunt . loadNpmTasks ( 'grunt-shell' ) ;
181
- grunt . loadNpmTasks ( 'grunt-phpcs' ) ;
182
- grunt . loadNpmTasks ( 'grunt-rtlcss' ) ;
183
- grunt . loadNpmTasks ( 'grunt-postcss' ) ;
184
- grunt . loadNpmTasks ( 'grunt-stylelint' ) ;
185
- grunt . loadNpmTasks ( 'grunt-wp-i18n' ) ;
186
- grunt . loadNpmTasks ( 'grunt-checktextdomain' ) ;
187
- grunt . loadNpmTasks ( 'grunt-babel' ) ;
188
- grunt . loadNpmTasks ( 'grunt-contrib-cssmin' ) ;
189
- grunt . loadNpmTasks ( 'grunt-contrib-concat' ) ;
190
- grunt . loadNpmTasks ( 'grunt-contrib-watch' ) ;
191
- grunt . loadNpmTasks ( 'grunt-contrib-clean' ) ;
175
+ grunt . loadNpmTasks ( 'grunt-sass' ) ;
176
+ grunt . loadNpmTasks ( 'grunt-shell' ) ;
177
+ grunt . loadNpmTasks ( 'grunt-phpcs' ) ;
178
+ grunt . loadNpmTasks ( 'grunt-rtlcss' ) ;
179
+ grunt . loadNpmTasks ( 'grunt-postcss' ) ;
180
+ grunt . loadNpmTasks ( 'grunt-stylelint' ) ;
181
+ grunt . loadNpmTasks ( 'grunt-wp-i18n' ) ;
182
+ grunt . loadNpmTasks ( 'grunt-checktextdomain' ) ;
183
+ grunt . loadNpmTasks ( 'grunt-babel' ) ;
184
+ grunt . loadNpmTasks ( 'grunt-contrib-cssmin' ) ;
185
+ grunt . loadNpmTasks ( 'grunt-contrib-concat' ) ;
186
+ grunt . loadNpmTasks ( 'grunt-contrib-watch' ) ;
187
+ grunt . loadNpmTasks ( 'grunt-contrib-clean' ) ;
192
188
193
189
// Register tasks
194
- grunt . registerTask ( 'default' , [
195
- 'css' ,
196
- 'js' ,
197
- 'i18n'
198
- ] ) ;
199
-
200
- grunt . registerTask ( 'js' , [
201
- 'babel' ,
202
- ] ) ;
203
-
204
- grunt . registerTask ( 'i18n' , [
205
- 'checktextdomain' ,
206
- 'makepot'
207
- ] ) ;
208
-
209
- grunt . registerTask ( 'css' , [
210
- 'sass' ,
211
- 'cssmin'
212
- ] ) ;
190
+ grunt . registerTask ( 'default' , [ 'css' , 'js' , 'i18n' ] ) ;
191
+
192
+ grunt . registerTask ( 'js' , [ 'babel' ] ) ;
193
+
194
+ grunt . registerTask ( 'i18n' , [ 'checktextdomain' , 'makepot' ] ) ;
195
+
196
+ grunt . registerTask ( 'css' , [ 'sass' , 'cssmin' ] ) ;
213
197
} ;
0 commit comments