Update dependencies, use local fonts

This commit is contained in:
Florine W. Dekker 2021-03-26 03:55:58 +01:00
parent 796d4c7573
commit a7c41011e9
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
4 changed files with 10 additions and 11 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,6 +1,6 @@
{ {
"name": "codsworth-namegen", "name": "codsworth-namegen",
"version": "1.1.0", "version": "1.1.1",
"description": "Choose a fitting name for your Fallout 4 character that Codsworth can pronounce", "description": "Choose a fitting name for your Fallout 4 character that Codsworth can pronounce",
"author": "Felix W. Dekker", "author": "Felix W. Dekker",
"browser": "dist/bundle.js", "browser": "dist/bundle.js",
@ -16,18 +16,18 @@
"deploy": "grunt deploy" "deploy": "grunt deploy"
}, },
"dependencies": { "dependencies": {
"@fwdekker/template": "^0.0.21" "@fwdekker/template": "^0.0.24"
}, },
"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.0", "webpack": "^5.28.0",
"webpack-cli": "^3.3.12" "webpack-cli": "^4.5.0"
} }
} }

View File

@ -11,8 +11,7 @@
<title>Codsworth name generator</title> <title>Codsworth name generator</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>
@ -71,6 +70,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 {jaroWinkler} from "./jaroWinkler"; import {jaroWinkler} from "./jaroWinkler";
@ -103,7 +103,7 @@ doAfterLoad(() => {
vcsURL: "https://git.fwdekker.com/FWDekker/codsworth-namegen/", vcsURL: "https://git.fwdekker.com/FWDekker/codsworth-namegen/",
version: "v%%VERSION_NUMBER%%" version: "v%%VERSION_NUMBER%%"
})); }));
$("main").style.display = null; showPage();
}); });
// Event handlers // Event handlers