diff --git a/package-lock.json b/package-lock.json index 954e8a5..f0a959b 100644 Binary files a/package-lock.json and b/package-lock.json differ diff --git a/package.json b/package.json index 092d36b..6f71493 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fwdekker/template", - "version": "2.1.2", + "version": "2.1.3", "description": "The base template for pages on fwdekker.com.", "author": "Felix W. Dekker", "license": "MIT", @@ -28,14 +28,14 @@ "normalize.css": "^8.0.1" }, "devDependencies": { - "grunt": "^1.3.0", + "grunt": "^1.4.0", "grunt-cli": "^1.4.2", "grunt-contrib-clean": "^2.0.0", "grunt-contrib-cssmin": "^4.0.0", "grunt-contrib-watch": "^1.1.0", "grunt-focus": "^1.0.0", - "grunt-webpack": "^4.0.2", - "webpack": "^5.33.2", + "grunt-webpack": "^4.0.3", + "webpack": "^5.35.0", "webpack-cli": "^4.6.0" } } diff --git a/src/main/js/main.js b/src/main/js/main.js index 17cbd71..0d74454 100644 --- a/src/main/js/main.js +++ b/src/main/js/main.js @@ -155,9 +155,9 @@ const footer = function( version = undefined, privacyPolicyURL = undefined }) { - if (author === undefined) author = "F.W. Dekker"; + if (author === undefined) author = "F.W. Dekker"; if (authorURL === undefined) authorURL = "https://fwdekker.com/"; - if (license === undefined) license = "MIT License"; + if (license === undefined) license = "MIT License"; if (licenseURL === undefined && vcsURL !== undefined) licenseURL = `${vcsURL}src/branch/master/LICENSE`; if (vcs === undefined && vcsURL !== undefined) vcs = "git"; if (privacyPolicyURL === undefined) privacyPolicyURL = "https://fwdekker.com/privacy/";