Skip to content

Commit

Permalink
Bump node & nuxt depencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JhumanJ committed Nov 20, 2024
1 parent 3dd36c8 commit 1b4e0b2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
run: cp .env.example .env

- name: Install npm dependencies
run: npm install --no-audit --no-progress --silent
run: npm ci --no-audit --no-progress --silent

- name: Build client
run: npm run build
Expand Down
8 changes: 4 additions & 4 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@
"devDependencies": {
"@nuxt/devtools": "^1.6.1",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/icon": "^1.7.2",
"@nuxt/icon": "^1.8.2",
"@nuxtjs/sitemap": "^6.1.3",
"@zadigetvoltaire/nuxt-gtm": "^0.0.13",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"nuxt": "^3.13.2",
"nuxt": "^3.14.1592",
"nuxt-utm": "^0.1.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"sass": "^1.80.2",
"vue": "^3.3.10",
"vue": "^3.5.13",
"vue-router": "^4.4.5"
},
"dependencies": {
"@codemirror/lang-html": "^6.4.9",
"@hcaptcha/vue3-hcaptcha": "^1.3.0",
"@iconify-json/material-symbols": "^1.2.4",
"@nuxt/ui": "^2.19.1",
"@nuxt/ui": "^2.19.2",
"@pinia/nuxt": "^0.5.5",
"@popperjs/core": "^2.11.8",
"@sentry/vite-plugin": "^2.22.6",
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.client
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apk add --no-cache git
# Clear npm cache, remove existing node_modules, and install dependencies
RUN npm cache clean --force && \
rm -rf node_modules && \
npm install
npm ci

# Explicitly install the correct version of esbuild
# RUN npm install [email protected]
Expand Down

0 comments on commit 1b4e0b2

Please sign in to comment.