-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGruntfile.js
204 lines (185 loc) · 5.28 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
module.exports = function( grunt ) {
'use strict';
var pkg = grunt.file.readJSON('package.json');
var banner = '/**\n * <%= pkg.homepage %>\n * Copyright (c) <%= grunt.template.today("yyyy") %>\n * This file is generated automatically. Do not edit.\n */\n';
// Project configuration
grunt.initConfig( {
rtlcss: {
options: {
config: {
preserveComments: true,
greedy: true
},
// generate source maps
map: false
},
dist: {
files: [
{
expand: true,
cwd: 'admin/dashboard/assets/build',
src: [
'*.css',
'!*-rtl.css',
],
dest: 'admin/dashboard/assets/build',
ext: '-rtl.css'
},
]
}
},
addtextdomain: {
options: {
textdomain: 'custom-fonts',
},
update_all_domains: {
options: {
updateDomains: true
},
src: [ '*.php', '**/*.php', '!node_modules/**', '!php-tests/**', '!bin/**' ]
}
},
wp_readme_to_markdown: {
your_target: {
files: {
'README.md': 'readme.txt'
}
},
},
makepot: {
target: {
options: {
domainPath: '/languages',
mainFile: 'custom-fonts.php',
potFilename: 'custom-fonts.pot',
potHeaders: {
poedit: true,
'x-poedit-keywordslist': true
},
type: 'wp-plugin',
updateTimestamp: true
}
}
},
clean: {
main: ["custom-fonts"],
zip: ["*.zip"]
},
copy: {
main: {
options: {
mode: true
},
src: [
'**',
'*.zip',
'!node_modules/**',
'!admin/dashboard/node_modules/**',
'!admin/dashboard/package.json',
'!admin/dashboard/package-lock.json',
'!admin/dashboard/postcss.config.js',
'!admin/dashboard/tailwind.config.js',
'!admin/dashboard/webpack.config.js',
'!.git/**',
'!.wordpress-org/**',
'!bin/**',
'!.gitlab-ci.yml',
'!bin/**',
'!tests/**',
'!phpunit.xml.dist',
'!*.sh',
'!*.map',
'!Gruntfile.js',
'!package.json',
'!.gitignore',
'!.distignore',
'!.editorconfig',
'!tailwind.config.js',
'!webpack.config.js',
'!postcss.config.js',
'!phpunit.xml',
'!README.md',
'!codesniffer.ruleset.xml',
'!vendor/**',
'!composer.json',
'!composer.lock',
'!package-lock.json',
'!phpcs.xml',
'!phpcs.xml.dist',
'!admin/dashboard/assets/src/**',
],
dest: 'custom-fonts/'
}
},
compress: {
main: {
options: {
archive: 'custom-fonts-' + pkg.version + '.zip',
mode: 'zip'
},
files: [
{
src: [
'./custom-fonts/**'
]
}
]
}
},
json2php: {
options: {
// Task-specific options go here.
compress: true,
cover: function (phpArrayString, destFilePath) {
return '<?php\n/**\n * Google fonts array file.\n *\n * @package custom-fonts\n * @author Brainstorm Force\n * @copyright Copyright (c) 2023, Brainstorm Force\n * @link https://wpastra.com/\n * @since 2.0.0\n */\n\n/**\n * Returns google fonts array\n *\n * @since 2.0.0\n */\nreturn ' + phpArrayString + ';\n';
}
},
your_target: {
files: {
'assets/fonts/google-fonts.php': 'assets/fonts/google-fonts.json'
}
},
},
} );
grunt.loadNpmTasks( 'grunt-wp-i18n' );
grunt.loadNpmTasks( 'grunt-wp-readme-to-markdown' );
grunt.loadNpmTasks( 'grunt-rtlcss' );
grunt.loadNpmTasks( 'grunt-json2php' );
grunt.loadNpmTasks( 'grunt-contrib-copy' );
grunt.loadNpmTasks( 'grunt-contrib-compress' );
grunt.loadNpmTasks( 'grunt-contrib-clean' );
grunt.registerTask( 'i18n', ['addtextdomain', 'makepot'] );
grunt.registerTask( 'readme', ['wp_readme_to_markdown'] );
grunt.registerTask( 'rtl', ['rtlcss'] );
grunt.registerTask( 'release', ['clean:zip', 'copy', 'compress', 'clean:main'] );
// Update google Fonts.
grunt.registerTask('download-google-fonts', function () {
var done = this.async();
var request = require('request');
var fs = require('fs');
request('https://www.googleapis.com/webfonts/v1/webfonts?key=AIzaSyDu1nDK2o4FpxhrIlNXyPNckVW5YP9HRu8', function (error, response, body) {
if (response && response.statusCode == 200) {
var fonts = JSON.parse(body).items.map(function (font) {
return {
[font.family]: {
'variants': font.variants,
'files': font.files,
'category': font.category
}
};
})
fs.writeFile('assets/fonts/google-fonts.json', JSON.stringify(fonts, undefined, 4), function (err) {
if (!err) {
console.log("Google Fonts Updated!");
done();
}
});
}
});
});
grunt.registerTask('google-fonts', function () {
grunt.task.run('download-google-fonts');
grunt.task.run('json2php');
});
grunt.util.linefeed = '\n';
};