-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
90 lines (89 loc) · 2.71 KB
/
manifest.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
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
{
"paths": {
"assets": "assets/",
"dist": "dist/"
},
"dependencies": {
"fonts": {
"files": ["fonts/**/*"]
},
"images": {
"files": ["images/**/*"]
},
"jquery.js": {
"npm": ["jquery"]
},
"semantic.js": {
"files": [
"scripts/semantic/**/{reset,site,button,container,divider,flag,header,icon,image,input,label,list,loader,rail,reveal,segment,step,breadcrumb,form,grid,menu,message,table,ad,card,comment,feed,item,statistic,accordion,calendar,checkbox,dimmer,dropdown,embed,modal,nag,popup,progress,rating,search,shape,sidebar,sticky,tab,transition,api,form,state,visibility}.js"
]
},
"project.js": {
"files": ["scripts/main.coffee"]
},
"styles.css": {
"files": ["styles/main.less"]
}
},
"config": {
"assets": {
"all": "assets/**/*",
"fonts": {
"path": "assets/fonts/",
"all": "assets/fonts/**/*"
},
"images": {
"path": "assets/images/",
"all": "assets/images/**/*"
},
"scripts": {
"path": "assets/scripts/",
"all": "assets/scripts/**/*",
"main": "assets/scripts/main.coffee",
"definitions": "assets/scripts/semantic/{globals,modules,behaviors}/"
},
"styles": {
"path": "assets/styles/",
"all": "assets/styles/**/*",
"main": "assets/styles/main.less",
"semantic": "assets/styles/{definitions,site}/{globals,elements,collections,views,modules,behaviors}/"
},
"definitions": {
},
"components": [
"reset", "site",
"button", "container", "divider", "flag", "header", "icon", "image",
"input", "label", "list", "loader", "rail", "reveal", "segment", "step",
"breadcrumb", "form", "grid", "menu", "message", "table",
"ad", "card", "comment", "feed", "item", "statistic",
"accordion", "calendar", "checkbox", "dimmer", "dropdown", "embed",
"modal", "nag", "popup", "progress", "rating", "search",
"shape", "sidebar", "sticky", "tab", "transition",
"api", "form", "state", "visibility"
],
"themes": "assets/styles/themes/**/assets/**/*.*"
},
"dist": {
"all": "dist/**/*",
"fonts": "dist/fonts/",
"images": "dist/images/",
"themes": "dist/themes/"
},
"settings" : {
"devUrl": "http://localhost:8888/ccwp/",
"imagemin": {
"optimizationLevel": 3,
"progressive": true,
"interlaced": true
},
"snippetOptions": {
"whitelist": ["/wp-admin/admin-ajax.php"],
"blacklist": ["/wp-admin/**"]
},
"watchFiles": [
"./**/*.{php,html,json,md}",
"../../plugins/cc-plugin/**/*"
]
}
}
}