-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.json
55 lines (55 loc) · 1.22 KB
/
project.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
{
"scripts": {
"source": {
"root": {
"vue": "src/scripts/vue/",
"react": "src/scripts/react/",
"vanilla": "src/scripts/vanilla/",
"angular": "src/scripts/angular/"
},
"libs": [
{ "name": "angularComponents", "entry": "src/scripts/angular/index.js" },
{ "name": "vueComponents", "entry": "src/scripts/vue/index.js" },
{ "name": "reactComponents", "entry": "src/scripts/react/index.js" },
{ "name": "vanillaComponents", "entry": "src/scripts/vanilla/index.js" }
]
},
"dist": {
"root": "dist/",
"filename": {
"prod": "[name].min.js",
"dev": "[name].js"
}
}
},
"styles": {
"source": {
"root": "src/styles/"
},
"dist": {
"filename": {
"prod": "[name].min.css",
"dev": "[name].css"
}
}
},
"images": {
"source": {
"root": "src/images/",
"files": "src/images/**/*.*"
},
"dist": {
"root": "images/[name].[ext]"
}
},
"tests": {
"source": {
"files": [
"src/scripts/**/*.js",
"!src/scripts/**/*.doc.js",
"!src/scripts/**/index.js",
"!src/scripts/**/mocks/**/*.js"
]
}
}
}