Skip to content

Commit

Permalink
fix(deps): updated to core v4.2 (#115)
Browse files Browse the repository at this point in the history
* fix(deps): updated to core v4.2

* chore(ci): updated node version to 20

* chore: fix lint
  • Loading branch information
alvarosabu committed Jul 17, 2024
1 parent ef51ae5 commit 0fdf68b
Show file tree
Hide file tree
Showing 4 changed files with 1,177 additions and 555 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18]
node-version: [20]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@
"@nuxt/devtools-kit": "^1.3.9",
"@nuxt/kit": "^3.12.3",
"@nuxt/ui": "^2.17.0",
"@tresjs/core": "4.1.0",
"@tresjs/nuxt": "3.0.0",
"@tresjs/core": "4.2.1",
"@tresjs/nuxt": "3.0.1",
"@types/three": "^0.166.0",
"@unocss/nuxt": "^0.61.3",
"@unocss/nuxt": "^0.61.5",
"defu": "^6.1.4",
"mlly": "^1.7.1",
"pkg-types": "^1.1.3",
Expand All @@ -67,20 +67,20 @@
"@iconify-json/ph": "^1.1.13",
"@nuxt/devtools-ui-kit": "^1.3.9",
"@nuxt/eslint-config": "^0.3.13",
"@nuxt/icon": "^1.0.0",
"@nuxt/icon": "^1.1.1",
"@nuxt/module-builder": "^0.8.1",
"@nuxt/schema": "^3.12.3",
"@nuxt/test-utils": "^3.13.1",
"@release-it/conventional-changelog": "^8.0.1",
"@tresjs/eslint-config": "^1.1.0",
"@types/node": "^20.14.10",
"@types/node": "^20.14.11",
"changelogen": "^0.5.5",
"eslint": "^9.6.0",
"eslint": "^9.7.0",
"nuxt": "^3.12.3",
"playwright": "^1.45.1",
"release-it": "^17.4.1",
"playwright": "^1.45.2",
"release-it": "^17.6.0",
"three": "^0.166.1",
"vitest": "^2.0.1"
"vitest": "^2.0.3"
},
"build": {
"externals": [
Expand Down
4 changes: 4 additions & 0 deletions playground/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export default defineNuxtConfig({
ssr: true,
modules: ['../src/module', '@nuxt/devtools'],

// for testing purposes
// imports: {
// autoImport: false,
Expand All @@ -11,11 +12,14 @@ export default defineNuxtConfig({
devtools: true,
glsl: true,
},

// for testing purposes: include some nuxt build tests
nitro: {
routeRules: {
'/page1': { ssr: false }, // <== client rendered page
'/page2': { prerender: true }, // <== server SSG page + payload
},
},

compatibilityDate: '2024-07-17',
})
Loading

0 comments on commit 0fdf68b

Please sign in to comment.