Update dependencies, use local fonts

This commit is contained in:
Florine W. Dekker 2021-03-26 03:52:07 +01:00
parent 461e5ab29c
commit 86d32d66fb
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
4 changed files with 9 additions and 10 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -16,19 +16,19 @@
"deploy": "grunt deploy" "deploy": "grunt deploy"
}, },
"dependencies": { "dependencies": {
"@fwdekker/template": "^0.0.20", "@fwdekker/template": "^0.0.24",
"big-integer": "^1.6.48" "big-integer": "^1.6.48"
}, },
"devDependencies": { "devDependencies": {
"grunt": "^1.2.1", "grunt": "^1.3.0",
"grunt-cli": "^1.3.2", "grunt-cli": "^1.4.1",
"grunt-contrib-clean": "^2.0.0", "grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0", "grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0", "grunt-contrib-watch": "^1.1.0",
"grunt-focus": "^1.0.0", "grunt-focus": "^1.0.0",
"grunt-text-replace": "^0.4.0", "grunt-text-replace": "^0.4.0",
"grunt-webpack": "^4.0.2", "grunt-webpack": "^4.0.2",
"webpack": "^4.44.1", "webpack": "^5.28.0",
"webpack-cli": "^3.3.12" "webpack-cli": "^4.5.0"
} }
} }

View File

@ -10,8 +10,7 @@
<title>Converter | FWDekker</title> <title>Converter | FWDekker</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic" <link rel="stylesheet" href="https://static.fwdekker.com/fonts/roboto.css" crossorigin="anonymous" />
crossorigin="anonymous" />
</head> </head>
<body> <body>
<noscript> <noscript>
@ -44,6 +43,6 @@
<!-- Scripts --> <!-- Scripts -->
<script src="bundle.js"></script> <script src="bundle.js?v=%%VERSION_NUMBER%%"></script>
</body> </body>
</html> </html>

View File

@ -1,4 +1,4 @@
import {$, doAfterLoad, footer, header, nav} from "@fwdekker/template"; import {$, doAfterLoad, footer, header, nav, showPage} from "@fwdekker/template";
import bigInt from "big-integer" import bigInt from "big-integer"
@ -227,7 +227,7 @@ doAfterLoad(() => {
vcsURL: "https://git.fwdekker.com/FWDekker/converter/", vcsURL: "https://git.fwdekker.com/FWDekker/converter/",
version: "v%%VERSION_NUMBER%%" version: "v%%VERSION_NUMBER%%"
})); }));
$("main").style.display = null; showPage();
}); });
doAfterLoad(() => { doAfterLoad(() => {