Fix version number in posts

This commit is contained in:
Florine W. Dekker 2021-04-18 17:48:55 +02:00
parent 3c74c43bfe
commit 86e6b0bd8e
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
3 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ module.exports = (eleventyConfig) => {
});
return {
pathPrefix: "/blog/",
pathPrefix: "/blog/dist/",
dir: {
input: "src/main/",
output: "dist",

View File

@ -11,7 +11,7 @@ module.exports = grunt => {
},
replace: {
dev: {
src: ["./dist/*.html", "./dist/*.js"],
src: ["./dist/**/*.html", "./dist/**/*.js"],
replacements: [
{
from: "%%VERSION_NUMBER%%",
@ -21,7 +21,7 @@ module.exports = grunt => {
overwrite: true
},
deploy: {
src: ["./dist/*.html", "./dist/*.js"],
src: ["./dist/**/*.html", "./dist/**/*.js"],
replacements: [
{
from: "%%VERSION_NUMBER%%",

View File

@ -1,6 +1,6 @@
{
"name": "blog",
"version": "1.1.5",
"version": "1.1.6",
"description": "Felix W. Dekker's personal blog.",
"author": "Felix W. Dekker",
"browser": "dist/bundle.js",