-
Notifications
You must be signed in to change notification settings - Fork 0
/
dp-project-config.json
54 lines (54 loc) · 1.07 KB
/
dp-project-config.json
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
{
"name": "wp-spa",
"workingDir" : "default",
"flag": "prod",
"tasks" : [
{
"name" : "pug-beautify",
"input": "admin/pug/"
},
{
"name" : "js",
"input": "js/src/",
"ignore" : ["**/node_modules/**", "**/vendors/**"]
},
{
"name" : "pug-php",
"input": "admin/pug/",
"output": "admin/partials/"
},
{
"name" : "js-webpack",
"input": "admin/js/src/webpack.config.js"
},
{
"name" : "stylus-bem",
"input": "admin/stylus/",
"output": "admin/css/"
},
{
"name" : "css",
"input": "admin/css/",
"output": "admin/css/"
},
{
"name" : "js-webpack",
"input": "public/js/src/webpack.config.js"
},
{
"name" : "stylus-bem",
"input": "public/css/",
"output": "public/css/"
},
{
"name" : "css",
"input": "public/css/",
"output": "public/css/"
},
{
"name": "pug-html",
"input": "public/js/src/modules/views/html/",
"output": "public/js/src/modules/views/html/"
}
]
}