forked from canonical-web-and-design/tutorials.ubuntu.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolymer.json
46 lines (46 loc) · 1.04 KB
/
polymer.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
{
"entrypoint": "index.html",
"shell": "src/ubuntu-tutorials-app.html",
"fragments": [
"src/codelabs-index.html",
"src/codelabs-page.html",
"src/error-404.html"
],
"sources": [
"images/**/*",
"src/**/*",
"static/**/*",
"bower.json"
],
"extraDependencies": [
"api/**/*",
"bower_components/webcomponentsjs/webcomponents-lite.min.js",
"manifest.json",
"robots.txt"
],
"builds": [{
"name": "bundled",
"bundle": true,
"js": {"minify": true, "compile": true},
"css": {"minify": true},
"html": {"minify": true},
"addServiceWorker": true,
"addPushManifest": true,
"insertPrefetchLinks": true,
"basePath":true
},{
"name": "es6-bundled",
"bundle": true,
"js": {"minify": true, "compile": false},
"css": {"minify": true},
"html": {"minify": true},
"addServiceWorker": true,
"addPushManifest": true,
"insertPrefetchLinks": true,
"basePath":true,
"browserCapabilities": ["es2015"]
}],
"lint": {
"rules": ["polymer-2-hybrid"]
}
}