-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpolymer.json
More file actions
50 lines (50 loc) · 1.27 KB
/
polymer.json
File metadata and controls
50 lines (50 loc) · 1.27 KB
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
{
"entrypoint": "index.html",
"shell": "src/app-elements/app-shell.html",
"fragments": [
"src/pages/inbox-page.html",
"src/pages/mission-page.html",
"src/pages/show-mission-page.html",
"src/pages/login-page.html",
"src/pages/new-campaign-page.html",
"src/pages/show-campaign-page.html",
"src/pages/campaigns-page.html",
"src/pages/mission-receipts-page.html",
"src/pages/not-found-page.html"
],
"sources": [
"images/**/*",
"fonts/**/*",
"src/**/*"
],
"extraDependencies": [
"bower_components/webcomponentsjs/*.js",
"!bower_components/webcomponentsjs/gulpfile.js",
"manifest.json",
"firebase-messaging-sw.js"
],
"lint": {
"rules": ["polymer-2"],
"ignoreWarnings": ["set-unknown-attribute"]
},
"builds": [
{
"name": "unbundled",
"js": {"minify": true},
"css": {"minify": true},
"html": {"minify": true},
"addServiceWorker": true,
"addPushManifest": true,
"insertPrefetchLinks": true
}, {
"name": "bundled",
"bundle": true,
"js": {"compile": true, "minify": true},
"css": {"minify": true},
"html": {"minify": true},
"addServiceWorker": true,
"addPushManifest": true,
"insertPrefetchLinks": true
}
]
}