Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

chore(deps): update all major updates (major) - abandoned #286

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"eslint-plugin-tailwindcss": "^3.15.1",
"json-editor-vue": "^0.14.0",
"lint-staged": "^15.2.2",
"nx": "^18.2.2",
"nx": "^19.1.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.3",
"vite": "5.2.8",
Expand Down
8 changes: 4 additions & 4 deletions packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
"@aws-sdk/client-ses": "^3.554.0",
"@capacitor/action-sheet": "6.0.0-rc.1",
"@capacitor/android": "6.0.0-rc.2",
"@capacitor/app": "^5.0.7",
"@capacitor/app-launcher": "^5.0.7",
"@capacitor/app": "^6.0.0",
"@capacitor/app-launcher": "^6.0.0",
"@capacitor/cli": "6.0.0-rc.2",
"@capacitor/core": "6.0.0-rc.2",
"@capacitor/ios": "6.0.0-rc.2",
Expand All @@ -90,7 +90,7 @@
"@iconify-json/carbon": "^1.1.31",
"@iconify-json/ph": "^1.1.12",
"@ionic/cli": "^7.2.0",
"@ionic/core": "^7.8.3",
"@ionic/core": "^8.2.0",
"@json2csv/node": "^7.0.6",
"@lucia-auth/adapter-drizzle": "1.0.7",
"@lucia-auth/adapter-postgresql": "3.1.2",
Expand Down Expand Up @@ -128,7 +128,7 @@
"happy-dom": "^14.7.0",
"ioredis": "^5.3.2",
"jiti": "^1.21.0",
"json-schema-to-typescript": "^13.1.2",
"json-schema-to-typescript": "^14.0.4",
"lint-staged": "^15.2.2",
"lucia": "3.1.1",
"node-cron": "^3.0.3",
Expand Down
3 changes: 2 additions & 1 deletion packages/nuxt/src/runtime/core/setupModules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ async function initModules(nuxt: Nuxt) {
if (
(typeof moduleValue === 'object' && moduleValue === null)
|| (typeof moduleValue === 'object' && !moduleValue)
)
) {
continue
}

if (typeof moduleValue === 'string' && moduleValue === '')
continue
Expand Down
6 changes: 4 additions & 2 deletions packages/nuxt/src/runtime/modules/capacitor/trapezed/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,9 @@ export async function trapezedRun(params: {
if (
typeof params.options.trapeze === 'object'
&& typeof params.options.trapeze.ios === 'function'
)
) {
params.options.trapeze.ios(project.ios, { build, target })
}
}
}
}
Expand Down Expand Up @@ -168,8 +169,9 @@ export async function trapezedRun(params: {
if (
typeof params.options.trapeze === 'object'
&& typeof params.options.trapeze.android === 'function'
)
) {
params.options.trapeze.android(project.android)
}
}

await project.commit()
Expand Down
Loading
Loading