Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #1541

Merged
merged 2 commits into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docs/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,6 @@ export default defineNuxtConfig({
icons: ['heroicons', 'simple-icons', 'ph'],
},

nitro: {
prerender: {
routes: ['/', '/api/search.json'],
autoSubfolderIndex: false,
},
},

routeRules: {
'/get-started': { redirect: { to: '/get-started/installation', statusCode: 301 } },
'/configuration': { redirect: { to: '/get-started/configuration', statusCode: 301 } },
Expand All @@ -39,6 +32,15 @@ export default defineNuxtConfig({
'/api/use-image': { redirect: { to: '/usage/use-image', statusCode: 301 } },
},

compatibilityDate: '2024-07-11',

nitro: {
prerender: {
routes: ['/', '/api/search.json'],
autoSubfolderIndex: false,
},
},

hooks: {
// Related to https://github.com/nuxt/nuxt/pull/22558
// Adding all global components to the main entry
Expand All @@ -54,6 +56,4 @@ export default defineNuxtConfig({
}
},
},

compatibilityDate: '2024-07-11',
})
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"dependencies": {
"@iconify-json/ph": "^1.2.1",
"@iconify-json/simple-icons": "^1.2.7",
"@iconify-json/simple-icons": "^1.2.8",
"@nuxt/content": "^2.13.4",
"@nuxt/fonts": "^0.10.0",
"@nuxt/image": "link:..",
Expand All @@ -24,6 +24,6 @@
},
"devDependencies": {
"@nuxt/devtools": "^1.6.0",
"@types/node": "^20.16.11"
"@types/node": "^20.16.13"
}
}
6 changes: 3 additions & 3 deletions example/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export default defineNuxtConfig({
modules: [
'@nuxt/image',
],
app: {
head: {
title: 'Nuxt Image Example',
},
},
modules: [
'@nuxt/image',
],
image: {
domains: [
'https://images.unsplash.com',
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,35 +49,35 @@
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/eslint-config": "0.5.7",
"@nuxt/eslint-config": "0.6.0",
"@nuxt/image": "link:",
"@nuxt/module-builder": "0.8.4",
"@nuxt/test-utils": "^3.14.3",
"@types/node": "^20.16.11",
"@types/node": "^20.16.13",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/coverage-v8": "^2.1.3",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.5.7",
"eslint": "9.12.0",
"eslint": "9.13.0",
"globby": "^14.0.2",
"happy-dom": "^15.7.4",
"ipx": "^2.1.0",
"jiti": "2.3.3",
"nuxt": "^3.13.2",
"ofetch": "^1.4.1",
"playwright-core": "^1.48.0",
"playwright-core": "^1.48.1",
"semver": "^7.6.3",
"tinyexec": "^0.3.0",
"tinyexec": "^0.3.1",
"typescript": "5.6.3",
"vitest": "^2.1.2",
"vitest": "^2.1.3",
"vitest-environment-nuxt": "^1.0.1",
"vue": "3.5.12",
"vue-tsc": "^2.1.6"
},
"optionalDependencies": {
"ipx": "^2.1.0"
},
"packageManager": "pnpm@9.12.1",
"packageManager": "pnpm@9.12.2",
"resolutions": {
"@nuxt/image": "link:.",
"@nuxt/schema": "3.13.2",
Expand Down
14 changes: 7 additions & 7 deletions playground/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
import { defineNuxtConfig } from 'nuxt/config'

export default defineNuxtConfig({
compatibilityDate: '2024-08-27',
modules: ['@nuxt/image'],
extends: ['./layers/example'],
modules: ['@nuxt/image'],
compatibilityDate: '2024-08-27',
nitro: {
prerender: {
failOnError: false,
},
},
image: {
inject: true,
domains: [
Expand Down Expand Up @@ -134,9 +139,4 @@ export default defineNuxtConfig({
},
},
},
nitro: {
prerender: {
failOnError: false,
},
},
})
Loading