update dependency versions

This commit is contained in:
Somrat 2025-02-24 17:02:03 +06:00
parent b56f358621
commit fc34a4a176
5 changed files with 11 additions and 19 deletions

View File

@ -2,8 +2,8 @@
FROM node:23
# Set environment variables for versions
ARG HUGO_VERSION=0.139.4
ARG GO_VERSION=1.23.4
ARG HUGO_VERSION=0.144.2
ARG GO_VERSION=1.24.0
# Install dependencies
RUN apt-get update && \

View File

@ -3,8 +3,8 @@
"build": {
"dockerfile": "Dockerfile",
"args": {
"GO_VERSION": "1.23.4",
"HUGO_VERSION": "0.139.4"
"GO_VERSION": "1.24.0",
"HUGO_VERSION": "0.144.2"
}
},
"customizations": {

View File

@ -3,5 +3,5 @@ publish = "public"
command = "yarn project-setup; yarn build"
[build.environment]
HUGO_VERSION = "0.141.0"
GO_VERSION = "1.23.3"
HUGO_VERSION = "0.144.2"
GO_VERSION = "1.24.0"

View File

@ -87,9 +87,9 @@ First you need to [clone](https://github.com/zeon-studio/hugoplate) or [download
To start using this template, you need to have some prerequisites installed on your machine.
- [Hugo Extended v0.124+](https://gohugo.io/installation/)
- [Node v20+](https://nodejs.org/en/download/)
- [Go v1.22+](https://go.dev/doc/install)
- [Hugo Extended v0.144+](https://gohugo.io/installation/)
- [Node v22+](https://nodejs.org/en/download/)
- [Go v1.24+](https://go.dev/doc/install)
### 👉 Project Setup

View File

@ -1,16 +1,8 @@
#!/bin/bash
# default versions
NODE_VERSION='18.16.1';
GO_VERSION='1.23.3';
HUGO_VERSION='0.141.0';
# install Node.js
# echo "Installing Node.js $NODE_VERSION..."
# curl -sSOL https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}.tar.gz
# tar -xzf node-v${NODE_VERSION}.tar.gz
# export PATH=$PATH:/usr/local/bin
# rm -rf node-v${NODE_VERSION}.tar.gz
GO_VERSION='1.24.0';
HUGO_VERSION='0.144.2';
echo "USING NODE VERSION: $(node -v)"