Use new template system

This commit is contained in:
Florine W. Dekker 2021-04-18 18:21:34 +02:00
parent 86d32d66fb
commit e6cd3d554e
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
5 changed files with 14 additions and 18 deletions

View File

@ -8,7 +8,7 @@ module.exports = grunt => {
}, },
copy: { copy: {
html: { html: {
files: [{expand: true, cwd: "src/main/", src: "**/*.html", dest: "dist/"}] files: [{expand: true, cwd: "src/main/", src: "**/*.html", dest: "dist/", flatten: true}]
}, },
}, },
focus: { focus: {
@ -54,7 +54,7 @@ module.exports = grunt => {
}, },
webpack: { webpack: {
options: { options: {
entry: "./src/main/js/index.js", entry: "./src/main/js/main.js",
module: { module: {
rules: [ rules: [
{ {

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,6 +1,6 @@
{ {
"name": "converter", "name": "converter",
"version": "1.4.8", "version": "1.4.9",
"description": "Convert numbers to and from various bases.", "description": "Convert numbers to and from various bases.",
"author": "Felix W. Dekker", "author": "Felix W. Dekker",
"browser": "dist/bundle.js", "browser": "dist/bundle.js",
@ -16,19 +16,18 @@
"deploy": "grunt deploy" "deploy": "grunt deploy"
}, },
"dependencies": { "dependencies": {
"@fwdekker/template": "^0.0.24",
"big-integer": "^1.6.48" "big-integer": "^1.6.48"
}, },
"devDependencies": { "devDependencies": {
"grunt": "^1.3.0", "grunt": "^1.3.0",
"grunt-cli": "^1.4.1", "grunt-cli": "^1.4.2",
"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.3",
"webpack": "^5.28.0", "webpack": "^5.33.2",
"webpack-cli": "^4.5.0" "webpack-cli": "^4.6.0"
} }
} }

View File

@ -11,14 +11,15 @@
<title>Converter | FWDekker</title> <title>Converter | FWDekker</title>
<link rel="stylesheet" href="https://static.fwdekker.com/fonts/roboto.css" crossorigin="anonymous" /> <link rel="stylesheet" href="https://static.fwdekker.com/fonts/roboto.css" crossorigin="anonymous" />
<link rel="stylesheet" href="https://static.fwdekker.com/lib/template/1.x.x/bundle.css" crossorigin="anonymous" />
</head> </head>
<body> <body>
<noscript> <noscript>
<span style="color: red; font-weight: bold;"> <p style="color: red; font-weight: bold;">
This website does not function if JavaScript is disabled. This website does not function if JavaScript is disabled.
Please check the <a href="https://www.enable-javascript.com/"> Please check the <a href="https://www.enable-javascript.com/">
instructions on how to enable JavaScript in your web browser</a>. instructions on how to enable JavaScript in your web browser</a>.
</span> </p>
</noscript> </noscript>
<main style="display: none;"> <main style="display: none;">
<div id="nav"></div> <div id="nav"></div>
@ -41,8 +42,8 @@
<div id="footer"></div> <div id="footer"></div>
</main> </main>
<script src="https://static.fwdekker.com/lib/template/1.x.x/bundle.js" crossorigin="anonymous"></script>
<!-- Scripts --> <!--suppress HtmlUnknownTarget -->
<script src="bundle.js?v=%%VERSION_NUMBER%%"></script> <script src="bundle.js?v=%%VERSION_NUMBER%%"></script>
</body> </body>
</html> </html>

View File

@ -1,4 +1,5 @@
import {$, doAfterLoad, footer, header, nav, showPage} from "@fwdekker/template"; // noinspection JSUnresolvedVariable
const {$, doAfterLoad, footer, header, nav, showPage} = window.fwdekker;
import bigInt from "big-integer" import bigInt from "big-integer"
@ -219,11 +220,6 @@ doAfterLoad(() => {
description: "Convert numbers to and from various bases" description: "Convert numbers to and from various bases"
})); }));
$("#footer").appendChild(footer({ $("#footer").appendChild(footer({
author: "Felix W. Dekker",
authorURL: "https://fwdekker.com/",
license: "MIT License",
licenseURL: "https://git.fwdekker.com/FWDekker/converter/src/branch/master/LICENSE",
vcs: "git",
vcsURL: "https://git.fwdekker.com/FWDekker/converter/", vcsURL: "https://git.fwdekker.com/FWDekker/converter/",
version: "v%%VERSION_NUMBER%%" version: "v%%VERSION_NUMBER%%"
})); }));