-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgulpconfig.json
38 lines (38 loc) · 1.27 KB
/
gulpconfig.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
{
"paths": {
"chromeExt": {
"vendors": {
"entries": [],
"outputFolder": "dist/chromeExtension/dev/scripts/",
"outputFileName": "vendorBundle.js"
},
"styles": {
"watchFiles": [
"./src/styles/**/*.scss"
],
"bundle": "bundle.css",
"dist": "dist/chromeExtension/dev/styles/"
},
"rootDistFoldder": "dist/chromeExtension/dev",
"rootFolderFiles": [
"src/manifest.json",
"src/index.html"
],
"package": {
"packageFiles": "dist/chromeExtension/dev/**",
"name": "ChromeSPPropertiesAdmin.zip",
"distFolder": "dist/chromeExtension/prod"
},
"images": {
"src": "src/images/*.png",
"dist": "dist/chromeExtension/dev/images"
},
"data": {
"src": "src/data/*.json",
"dist": "dist/chromeExtension/dev/data",
"developmentCdn": "https://localhost:8080/dist/actions",
"productionCdn": "https://serene-saha-ee2827.netlify.com"
}
}
}
}