From 0a422e677730abeef3d567b6f9e1d84f8fac5b33 Mon Sep 17 00:00:00 2001 From: "Felix W. Dekker" Date: Wed, 30 Sep 2020 15:09:57 +0200 Subject: [PATCH] Correctly resolve JS bundle by version number --- Gruntfile.js | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 22ccbd9..7aeb5d5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -27,7 +27,7 @@ module.exports = grunt => { }, replace: { dev: { - src: ["./dist/*.js"], + src: ["./dist/*.html", "./dist/*.js"], replacements: [ { from: "%%VERSION_NUMBER%%", @@ -37,7 +37,7 @@ module.exports = grunt => { overwrite: true }, deploy: { - src: ["./dist/*.js"], + src: ["./dist/*.html", "./dist/*.js"], replacements: [ { from: "%%VERSION_NUMBER%%", diff --git a/package.json b/package.json index 186ac88..9e8d540 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fwdekker.com", - "version": "0.38.1", + "version": "0.38.2", "description": "The source code of [my personal website](https://fwdekker.com/).", "author": "Felix W. Dekker", "browser": "dist/bundle.js",