-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gruntfile.js
64 lines (57 loc) · 1.2 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
const path = require('path')
const paths = {
global: {
config: path.join(__dirname, 'grunt/'),
grunt: path.join(__dirname, 'grunt/'),
},
config: 'grunt/',
grunt: 'grunt/',
languages: 'languages/',
logs: 'logs/',
images: 'images/',
vendor: 'packages/',
css: 'assets/css/'
};
const taskMap = {
addtextdomain: 'grunt-wp-i18n',
wp_readme_to_markdown: 'grunt-wp-readme-to-markdown',
}
const files = {
php: [
'*.php',
'**/*.php',
'!.git/**',
'!vendor/**',
'!node_modules/**',
'!logs/**'
],
css: [
'*.css',
'**/*.css',
'!*.min.css',
'!**/*.min.css',
'!vendor/**',
'!node_modules/**',
'!logs/**'
],
js: [
'*.js',
'**/*.js',
'!*.min.js',
'!**/*.min.js',
'!.git/**',
'!vendor/**',
'!node_modules/**',
'!logs/**'
]
}
const gruntConfig = (grunt) => {
'use strict'
const config = {}
const loader = require('load-project-config')
config.paths = paths
config.taskMap = taskMap
config.files = files
loader(grunt, config).init()
}
module.exports = gruntConfig;