Skip to content

Commit 926fcca

Browse files
authored
Merge pull request #10 from evansosenko/update-stuff
Update tools for end of 2024
2 parents 56cf717 + 0333dfa commit 926fcca

15 files changed

+2169
-1200
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG VARIANT="20"
22

33
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:${VARIANT}
44

5-
ARG HUGO_VERSION="0.127.0"
5+
ARG HUGO_VERSION="0.140.0"
66
ARG HUGO_ARCH="64bit"
77

88
RUN hugo_url="https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}" \

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dockerfile": "Dockerfile",
55
"args": {
66
"VARIANT": "20",
7-
"HUGO_VERSION": "0.127.0",
7+
"HUGO_VERSION": "0.140.0",
88
"HUGO_ARCH": "64bit"
99
}
1010
},

.eslintrc.json

-4
This file was deleted.

.github/actions/setup-node/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ inputs:
66
node_version:
77
description: The Node.js version.
88
required: false
9-
default: '20'
9+
default: '22'
1010

1111
runs:
1212
using: composite

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2013-2024 Evan Sosenko.
1+
Copyright (c) 2013-2025 Evan Sosenko.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $ npm run format
4545

4646
## License
4747

48-
The code and content for this site is is Copyright (c) 2013-2024 Evan Sosenko.
48+
The code and content for this site is is Copyright (c) 2013-2025 Evan Sosenko.
4949

5050
## Warranty
5151

eslint.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import neostandard from 'neostandard'
2+
3+
export default neostandard({
4+
noStyle: true,
5+
})

netlify.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
publish = "public"
44

55
[build.environment]
6-
HUGO_VERSION = "0.127.0"
6+
HUGO_VERSION = "0.140.0"
77

88
[[headers]]
99
for = "/*"

0 commit comments

Comments
 (0)