Bump node & nuxt depencies

This commit is contained in:
Julien Nahum 2024-11-20 18:41:56 +01:00
parent 3dd36c8560
commit 1b4e0b2533
4 changed files with 10 additions and 10 deletions

View File

@ -191,7 +191,7 @@ jobs:
run: cp .env.example .env run: cp .env.example .env
- name: Install npm dependencies - name: Install npm dependencies
run: npm install --no-audit --no-progress --silent run: npm ci --no-audit --no-progress --silent
- name: Build client - name: Build client
run: npm run build run: npm run build

View File

@ -10,7 +10,7 @@
"@codemirror/lang-html": "^6.4.9", "@codemirror/lang-html": "^6.4.9",
"@hcaptcha/vue3-hcaptcha": "^1.3.0", "@hcaptcha/vue3-hcaptcha": "^1.3.0",
"@iconify-json/material-symbols": "^1.2.4", "@iconify-json/material-symbols": "^1.2.4",
"@nuxt/ui": "^2.19.1", "@nuxt/ui": "^2.19.2",
"@pinia/nuxt": "^0.5.5", "@pinia/nuxt": "^0.5.5",
"@popperjs/core": "^2.11.8", "@popperjs/core": "^2.11.8",
"@sentry/vite-plugin": "^2.22.6", "@sentry/vite-plugin": "^2.22.6",
@ -53,19 +53,19 @@
"devDependencies": { "devDependencies": {
"@nuxt/devtools": "^1.6.1", "@nuxt/devtools": "^1.6.1",
"@nuxt/eslint-config": "^0.2.0", "@nuxt/eslint-config": "^0.2.0",
"@nuxt/icon": "^1.7.2", "@nuxt/icon": "^1.8.2",
"@nuxtjs/sitemap": "^6.1.3", "@nuxtjs/sitemap": "^6.1.3",
"@zadigetvoltaire/nuxt-gtm": "^0.0.13", "@zadigetvoltaire/nuxt-gtm": "^0.0.13",
"autoprefixer": "^10.4.20", "autoprefixer": "^10.4.20",
"eslint": "^8.57.1", "eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1", "eslint-plugin-prettier": "^5.2.1",
"nuxt": "^3.13.2", "nuxt": "^3.14.1592",
"nuxt-utm": "^0.1.10", "nuxt-utm": "^0.1.10",
"postcss": "^8.4.47", "postcss": "^8.4.47",
"prettier": "^3.3.3", "prettier": "^3.3.3",
"sass": "^1.80.2", "sass": "^1.80.2",
"vue": "^3.3.10", "vue": "^3.5.13",
"vue-router": "^4.4.5" "vue-router": "^4.4.5"
} }
}, },

View File

@ -15,26 +15,26 @@
"devDependencies": { "devDependencies": {
"@nuxt/devtools": "^1.6.1", "@nuxt/devtools": "^1.6.1",
"@nuxt/eslint-config": "^0.2.0", "@nuxt/eslint-config": "^0.2.0",
"@nuxt/icon": "^1.7.2", "@nuxt/icon": "^1.8.2",
"@nuxtjs/sitemap": "^6.1.3", "@nuxtjs/sitemap": "^6.1.3",
"@zadigetvoltaire/nuxt-gtm": "^0.0.13", "@zadigetvoltaire/nuxt-gtm": "^0.0.13",
"autoprefixer": "^10.4.20", "autoprefixer": "^10.4.20",
"eslint": "^8.57.1", "eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1", "eslint-plugin-prettier": "^5.2.1",
"nuxt": "^3.13.2", "nuxt": "^3.14.1592",
"nuxt-utm": "^0.1.10", "nuxt-utm": "^0.1.10",
"postcss": "^8.4.47", "postcss": "^8.4.47",
"prettier": "^3.3.3", "prettier": "^3.3.3",
"sass": "^1.80.2", "sass": "^1.80.2",
"vue": "^3.3.10", "vue": "^3.5.13",
"vue-router": "^4.4.5" "vue-router": "^4.4.5"
}, },
"dependencies": { "dependencies": {
"@codemirror/lang-html": "^6.4.9", "@codemirror/lang-html": "^6.4.9",
"@hcaptcha/vue3-hcaptcha": "^1.3.0", "@hcaptcha/vue3-hcaptcha": "^1.3.0",
"@iconify-json/material-symbols": "^1.2.4", "@iconify-json/material-symbols": "^1.2.4",
"@nuxt/ui": "^2.19.1", "@nuxt/ui": "^2.19.2",
"@pinia/nuxt": "^0.5.5", "@pinia/nuxt": "^0.5.5",
"@popperjs/core": "^2.11.8", "@popperjs/core": "^2.11.8",
"@sentry/vite-plugin": "^2.22.6", "@sentry/vite-plugin": "^2.22.6",

View File

@ -14,7 +14,7 @@ RUN apk add --no-cache git
# Clear npm cache, remove existing node_modules, and install dependencies # Clear npm cache, remove existing node_modules, and install dependencies
RUN npm cache clean --force && \ RUN npm cache clean --force && \
rm -rf node_modules && \ rm -rf node_modules && \
npm install npm ci
# Explicitly install the correct version of esbuild # Explicitly install the correct version of esbuild
# RUN npm install esbuild@0.21.5 # RUN npm install esbuild@0.21.5