shells/hugo: update NodeJS 16 with latest version

This is to prevent periodic update with NodeJS versions being insecure
at some point.
This commit is contained in:
Gabriel Arazas 2023-07-14 14:44:16 +08:00
parent 214ea6fa6d
commit 4cae5c709b
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -1,11 +1,11 @@
# My usual toolchain for developing Hugo projects.
{ mkShell, hugo, git, go, nodejs-16_x }:
{ mkShell, hugo, git, go, nodejs_latest }:
mkShell {
packages = [
hugo # The main tool.
go # I might use Go modules which requires the Golang runtime.
git # VCS of my choice.
nodejs-16_x # The supported NodeJS version.
nodejs_latest # The supported NodeJS version.
];
}