Skip to content

Commit

Permalink
release updated
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrkiras committed May 30, 2024
1 parent 1469ab5 commit 2b7f24d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
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)
)
) {

Check failure on line 46 in packages/nuxt/src/runtime/core/setupModules.ts

View workflow job for this annotation

GitHub Actions / 📚 Main (ubuntu-latest)

Unnecessary { after 'if' condition
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'
)
) {

Check failure on line 96 in packages/nuxt/src/runtime/modules/capacitor/trapezed/index.ts

View workflow job for this annotation

GitHub Actions / 📚 Main (ubuntu-latest)

Unnecessary { after 'if' condition
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'
)
) {

Check failure on line 172 in packages/nuxt/src/runtime/modules/capacitor/trapezed/index.ts

View workflow job for this annotation

GitHub Actions / 📚 Main (ubuntu-latest)

Unnecessary { after 'if' condition
params.options.trapeze.android(project.android)
}
}

await project.commit()
Expand Down
1 change: 0 additions & 1 deletion themes/pergel-auth/server/lucia-changeName/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export const changeNameAuth = pergelChangeName()
db: connect,
options: {
getUserAttributes(databaseUserAttributes) {
// eslint-disable-next-line unused-imports/no-unused-vars
const { password, provider, providerId, ...attributes } = databaseUserAttributes

Check failure on line 17 in themes/pergel-auth/server/lucia-changeName/index.ts

View workflow job for this annotation

GitHub Actions / autofix

'password' is assigned a value but never used. Allowed unused vars must match /^_/u

Check failure on line 17 in themes/pergel-auth/server/lucia-changeName/index.ts

View workflow job for this annotation

GitHub Actions / autofix

'provider' is assigned a value but never used. Allowed unused vars must match /^_/u

Check failure on line 17 in themes/pergel-auth/server/lucia-changeName/index.ts

View workflow job for this annotation

GitHub Actions / autofix

'providerId' is assigned a value but never used. Allowed unused vars must match /^_/u

Check failure on line 17 in themes/pergel-auth/server/lucia-changeName/index.ts

View workflow job for this annotation

GitHub Actions / 📚 Main (ubuntu-latest)

'password' is assigned a value but never used. Allowed unused vars must match /^_/u

Check failure on line 17 in themes/pergel-auth/server/lucia-changeName/index.ts

View workflow job for this annotation

GitHub Actions / 📚 Main (ubuntu-latest)

'provider' is assigned a value but never used. Allowed unused vars must match /^_/u

Check failure on line 17 in themes/pergel-auth/server/lucia-changeName/index.ts

View workflow job for this annotation

GitHub Actions / 📚 Main (ubuntu-latest)

'providerId' is assigned a value but never used. Allowed unused vars must match /^_/u
return attributes
},
Expand Down

0 comments on commit 2b7f24d

Please sign in to comment.