-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolymer.json.template.json
82 lines (82 loc) · 1.72 KB
/
polymer.json.template.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
{
"npm": true,
"entrypoint": "index.html",
"shell": "src/web-elemens-loader.js",
"sources": [
"images/**/*",
"demo/**/*"
],
"extraDependencies": [
"manifest.json",
"node_modules/@ionic/core/dist/ionic/**/*",
"node_modules/@ionic/core/css/**/*",
"node_modules/@fortawesome/fontawesome-free/**/*",
"node_modules/@webcomponents/webcomponentsjs/*.js",
"!node_modules/@webcomponents/webcomponentsjs/gulpfile.js",
"node_modules/@webcomponents/webcomponentsjs/bundles/*.js"
],
"builds": [
{
"name": "esm-unbundled",
"basePath": "/web-elements-loader/build/esm-unbundled",
"browserCapabilities": [
"es2015",
"modules"
],
"js": {
"minify": true
},
"css": {
"minify": true
},
"html": {
"minify": true
},
"bundle": false,
"addServiceWorker": false,
"stripComments": true
},
{
"name": "esm-debug",
"basePath": "/web-elements-loader/build/esm-debug",
"browserCapabilities": [
"es2015",
"modules"
],
"js": {
"minify": false
},
"css": {
"minify": false
},
"html": {
"minify": false
},
"bundle": false,
"addServiceWorker": false
},
{
"name": "es5-bundled",
"basePath": "/web-elements-loader/build/es5-bundled",
"js": {
"minify": true,
"compile": true,
"transformModulesToAmd": true
},
"css": {
"minify": true
},
"html": {
"minify": true
},
"bundle": false,
"addServiceWorker": false,
"stripComments": true
}
],
"lint": {
"rules": [
"polymer-3"
]
}
}