Skip to content

Commit 09b6304

Browse files
committed
Melhorias de performance
1 parent d4bafea commit 09b6304

29 files changed

+161
-31
lines changed

.firebase/hosting.ZGVwbG95.cache

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
manifest.json,1560825739467,21839584ab1f6e8f85ac70fd11a8267a2faadb7706a466b002c75918086e1835
12
icon.png,1539479478000,27a3dbeb5916976c7132eadd036f7cd61e270b7ac6377f6fc168a88f7548204c
2-
manifest.json,1560755205640,8b06dfc85e8020330433a2bfe1caacc478689de2c6c7519c7ab711dec23a46f4
3-
service-worker.js,1560755205684,57d7a7341bb472660bbc88f0f67870eeb82c039db66f6492d4e56f697702b6c2
4-
index.html,1560755467520,4e598348071ac94e750c77c523f3843cc3348877ffcc2cd2f11012f5ab782d24
3+
service-worker.js,1560825740435,ddcba25dfccc8d582cd0f7714a8f04cb4142f487799ff420002b4582d2a017db
4+
cabin-400.woff2,1560822820822,801ab0789a3952093806871540942b18eade36e94b545b2b6ec72a4f5392b6e7
5+
index.html,1560825740435,122450ab8578c05e9ee31453aeb1b83eb19314de934794ab66e43e8c03486993
6+
cabin-500.woff2,1560822819681,2730fa6d8cbacbaf3a531673b501845c4ae54dccae05bc005045694af5e0e057
7+
cabin-700.woff2,1560822840262,4acbf2507da66ea28cbf223e043df6a10353339eb5d11bee6db1319de328cb7b
8+
material-icons.woff2,1560822804019,fe00fc3a31cd4aa80dbf1f7c69d03c2765da28e648728fb0603fa00d7a11b9c3

.vscode/settings.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
{
2-
"python.jediEnabled": false,
3-
"python.linting.pylintEnabled": false
4-
}
2+
"files.exclude": {
3+
"*-lock.*": true,
4+
"**/node_modules": true,
5+
"deploy/": true,
6+
"public/": true
7+
},
8+
"search.exclude": {
9+
"deploy/": true,
10+
"public/": true
11+
}
12+
}

deploy/cabin-400.woff2

13.1 KB
Binary file not shown.

deploy/cabin-500.woff2

13.4 KB
Binary file not shown.

deploy/cabin-700.woff2

12.6 KB
Binary file not shown.

deploy/index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

deploy/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"name":"VLT Carioca Horários","short_name":"VLT Carioca Horários","lang":"pt-BR","theme_color":"#003c8f","background_color":"#003c8f","display":"standalone","scope":"/","start_url":"/","icons":[{"src":"/icon.png","sizes":"512x512","type":"image/png"}],"splash_pages":null}
1+
{"name":"VLT Carioca","short_name":"VLT Carioca","lang":"pt-BR","theme_color":"#003c8f","background_color":"#003c8f","display":"standalone","scope":"/","start_url":"/","icons":[{"src":"/icon.png","sizes":"512x512","type":"image/png"}],"splash_pages":null}

deploy/material-icons.woff2

59.4 KB
Binary file not shown.

deploy/service-worker.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/gulp-config.js

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ config["assets"] = {
4545
"dir": "./source/assets/",
4646
"watch": ["**"],
4747
"files": [
48+
// Service Worker e Manifest
4849
{
4950
"title": "service-worker",
5051
"type": "js",
@@ -65,6 +66,8 @@ config["assets"] = {
6566
},
6667
"filename": "manifest.json"
6768
},
69+
70+
// Ícone
6871
{
6972
"title": "icon",
7073
"type": "png",
@@ -74,6 +77,48 @@ config["assets"] = {
7477
"production": "./deploy/"
7578
},
7679
"filename": "icon.png"
80+
},
81+
82+
// Fontes
83+
{
84+
"title": "cabin-400",
85+
"type": "font",
86+
"source": "./source/assets/cabin-400.woff2",
87+
"destination": {
88+
"development": "./public/",
89+
"production": "./deploy/"
90+
},
91+
"filename": "cabin-400.woff2"
92+
},
93+
{
94+
"title": "cabin-500",
95+
"type": "font",
96+
"source": "./source/assets/cabin-500.woff2",
97+
"destination": {
98+
"development": "./public/",
99+
"production": "./deploy/"
100+
},
101+
"filename": "cabin-500.woff2"
102+
},
103+
{
104+
"title": "cabin-700",
105+
"type": "font",
106+
"source": "./source/assets/cabin-700.woff2",
107+
"destination": {
108+
"development": "./public/",
109+
"production": "./deploy/"
110+
},
111+
"filename": "cabin-700.woff2"
112+
},
113+
{
114+
"title": "material-icons",
115+
"type": "font",
116+
"source": "./source/assets/material-icons.woff2",
117+
"destination": {
118+
"development": "./public/",
119+
"production": "./deploy/"
120+
},
121+
"filename": "material-icons.woff2"
77122
}
78123
]
79124
};

0 commit comments

Comments
 (0)