-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
73 lines (65 loc) · 1.57 KB
/
index.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
/* global require, __dirname */
module.exports = function() {
'use strict';
var path = require( 'path' ),
project = {};
project.paths = {
config: 'config/',
assets: 'assets/',
languages: 'languages/',
release: 'release/',
jsSrc: 'assets/plugin/js/',
jsVend: 'js/vendor/',
jsDist: 'js/',
cssSrc: 'assets/plugin/css/',
cssDist: 'css/',
cssVend: 'css/vendor/',
fontsSrc: 'assets/plugin/fonts/',
fontsDist: 'fonts/',
fontsVend: 'fonts/vendor/',
imagesSrc: 'assets/plugin/images/',
imagesDist: 'images/',
imagesVend: 'images/vendor/',
bower: 'assets/bower/',
grunt: 'config/grunt/',
node: 'node_modules/',
tasks: 'tasks/'
};
project.paths.global = {
config: path.join( __dirname, 'config/' ),
grunt: path.join( __dirname, 'config/grunt/' ),
tasks: path.join( __dirname, 'tasks/' )
};
project.taskMap = {
addtextdomain: 'grunt-wp-i18n',
readpkg: 'cipher-plugin-config',
makepot: 'grunt-wp-i18n'
};
project.files = {
scss: project.paths.cssSrc + '**/*.scss',
images: project.paths.imagesSrc + '**/*',
config: project.paths.config + '**/*.js'
};
project.files.js = [
project.paths.jsSrc + '**/*.js',
'!' + project.paths.jsSrc + '**/*.min.js',
'!' + project.paths.jsVend
];
project.files.php = [
'*.php',
'**/*.php',
'!.git/**',
'!.sass-cache/**',
'!assets/**',
'!css/**',
'!release/**',
'!fonts/**',
'!images/**',
'!js/**',
'!languages/**',
'!bower_components/**',
'!node_modules/**',
'!tmp/**'
];
return project;
};