[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2025-01-09 14:46:41 +00:00 committed by Julien Huang
parent 8b2b968977
commit f22ef4f137
6 changed files with 25 additions and 24 deletions

View File

@ -24,8 +24,9 @@ export function useNuxt (): Nuxt {
const fallbackInstance = fallbackNuxtCtx.tryUse()
if (fallbackInstance) {
logger.warn('Using fallback global Nuxt instance. You may be using a @nuxt/kit composable outside of a Nuxt context, this behavior is deprecated and will be removed in v4.')
return fallbackInstance }
return fallbackInstance
}
throw new Error('Nuxt instance is unavailable!')
}
return instance
@ -45,7 +46,7 @@ export function useNuxt (): Nuxt {
*/
export function tryUseNuxt (): Nuxt | null {
const nuxt = nuxtCtx().tryUse()
if(!nuxt) {
if (!nuxt) {
logger.warn('Using fallback global Nuxt instance. You may be using a @nuxt/kit composable outside of a Nuxt context, this behavior is deprecated and will be removed in v4.')
return fallbackNuxtCtx.tryUse()
}

View File

@ -2,8 +2,8 @@ import { pathToFileURL } from 'node:url'
import { readPackageJSON, resolvePackageJSON } from 'pkg-types'
import type { Nuxt } from '@nuxt/schema'
import { importModule, tryImportModule } from '../internal/esm'
import type { LoadNuxtConfigOptions } from './config'
import { asyncNameStorage } from '../utils'
import type { LoadNuxtConfigOptions } from './config'
export interface LoadNuxtOptions extends LoadNuxtConfigOptions {
/** Load nuxt with development mode */
@ -82,5 +82,5 @@ export async function buildNuxt (nuxt: Nuxt): Promise<any> {
// Nuxt 2
const { build } = await tryImportModule<{ build: any }>('nuxt-edge', { paths: rootDir }) || await importModule<{ build: any }>('nuxt', { paths: rootDir })
return asyncNameStorage.run(nuxt.__name, () => build(nuxt))
return asyncNameStorage.run(nuxt.__name, () => build(nuxt))
}

View File

@ -1,4 +1,4 @@
import { AsyncLocalStorage } from "node:async_hooks"
import { AsyncLocalStorage } from 'node:async_hooks'
/** @since 3.9.0 */
export function toArray<T> (value: T | T[]): T[] {
@ -10,4 +10,4 @@ export const MODE_RE = /\.(server|client)(\.\w+)*$/
* @internal
* async local storage for the name of the current nuxt instance
*/
export const asyncNameStorage = new AsyncLocalStorage<string>()
export const asyncNameStorage = new AsyncLocalStorage<string>()

View File

@ -429,7 +429,7 @@ export async function initNitro (nuxt: Nuxt & { _nitro?: Nitro }) {
tsConfig.compilerOptions.paths[alias] = [absolutePath.replace(EXTENSION_RE, '')] /* remove extension */
}
}
// Init nitro
const nitro = await createNitro(nitroConfig, {
compatibilityDate: nuxt.options.compatibilityDate,

View File

@ -4,7 +4,7 @@ import { join, normalize, relative, resolve } from 'pathe'
import { createDebugger, createHooks } from 'hookable'
import ignore from 'ignore'
import type { LoadNuxtOptions } from '@nuxt/kit'
import { addBuildPlugin, addComponent, addPlugin, addPluginTemplate, addRouteMiddleware, addServerPlugin, addTypeTemplate, addVitePlugin, addWebpackPlugin, installModule, loadNuxtConfig, nuxtCtx, resolveAlias, resolveFiles, resolveIgnorePatterns, resolvePath, tryResolveModule, useNitro, asyncNameStorage, fallbackNuxtCtx } from '@nuxt/kit'
import { addBuildPlugin, addComponent, addPlugin, addPluginTemplate, addRouteMiddleware, addServerPlugin, addTypeTemplate, addVitePlugin, addWebpackPlugin, asyncNameStorage, fallbackNuxtCtx, installModule, loadNuxtConfig, nuxtCtx, resolveAlias, resolveFiles, resolveIgnorePatterns, resolvePath, tryResolveModule, useNitro } from '@nuxt/kit'
import type { Nuxt, NuxtHooks, NuxtModule, NuxtOptions } from 'nuxt/schema'
import type { PackageJson } from 'pkg-types'
import { readPackageJSON } from 'pkg-types'
@ -22,6 +22,7 @@ import { gt, satisfies } from 'semver'
import { hasTTY, isCI } from 'std-env'
import { genImport } from 'knitwork'
import { randomUUID } from 'uncrypto'
import pagesModule from '../pages/module'
import metaModule from '../head/module'
import componentsModule from '../components/module'
@ -46,9 +47,8 @@ import { ComposableKeysPlugin } from './plugins/composable-keys'
import { resolveDeepImportsPlugin } from './plugins/resolve-deep-imports'
import { PrehydrateTransformPlugin } from './plugins/prehydrate'
import { VirtualFSPlugin } from './plugins/virtual'
import { randomUUID } from 'uncrypto'
export function createNuxt(options: NuxtOptions): Nuxt {
export function createNuxt (options: NuxtOptions): Nuxt {
const hooks = createHooks<NuxtHooks>()
const name = randomUUID()
const nuxt: Nuxt = {
@ -88,7 +88,7 @@ const keyDependencies = [
let warnedAboutCompatDate = false
async function initNuxt(nuxt: Nuxt) {
async function initNuxt (nuxt: Nuxt) {
// Register user hooks
for (const config of nuxt.options._layers.map(layer => layer.config).reverse()) {
if (config.hooks) {
@ -108,7 +108,7 @@ async function initNuxt(nuxt: Nuxt) {
logger.info(`Using \`${fallbackCompatibilityDate}\` as fallback compatibility date.`)
}
async function promptAndUpdate() {
async function promptAndUpdate () {
const result = await consola.prompt(`Do you want to update your ${colorize('cyan', 'nuxt.config')} to set ${colorize('cyan', `compatibilityDate: '${todaysDate}'`)}?`, {
type: 'confirm',
default: true,
@ -122,7 +122,7 @@ async function initNuxt(nuxt: Nuxt) {
const res = await updateConfig({
configFile: 'nuxt.config',
cwd: nuxt.options.rootDir,
async onCreate({ configFile }) {
async onCreate ({ configFile }) {
const shallCreate = await consola.prompt(`Do you want to create ${colorize('cyan', relative(nuxt.options.rootDir, configFile))}?`, {
type: 'confirm',
default: true,
@ -132,7 +132,7 @@ async function initNuxt(nuxt: Nuxt) {
}
return _getDefaultNuxtConfig()
},
onUpdate(config) {
onUpdate (config) {
config.compatibilityDate = todaysDate
},
})
@ -730,7 +730,7 @@ export default defineNuxtPlugin({
await nuxt.callHook('ready', nuxt)
}
export async function loadNuxt(opts: LoadNuxtOptions): Promise<Nuxt> {
export async function loadNuxt (opts: LoadNuxtOptions): Promise<Nuxt> {
const options = await loadNuxtConfig(opts)
// Temporary until finding better placement for each
@ -803,7 +803,7 @@ export async function loadNuxt(opts: LoadNuxtOptions): Promise<Nuxt> {
configurable: false,
enumerable: true,
get: () => nitroOptions,
set(value) {
set (value) {
Object.assign(nitroOptions, value)
},
},
@ -831,7 +831,7 @@ export async function loadNuxt(opts: LoadNuxtOptions): Promise<Nuxt> {
return nuxt
}
async function checkDependencyVersion(name: string, nuxtVersion: string): Promise<void> {
async function checkDependencyVersion (name: string, nuxtVersion: string): Promise<void> {
const path = await resolvePath(name, { fallbackToOriginal: true }).catch(() => null)
if (!path || path === name) { return }
@ -844,7 +844,7 @@ async function checkDependencyVersion(name: string, nuxtVersion: string): Promis
const RESTART_RE = /^(?:app|error|app\.config)\.(?:js|ts|mjs|jsx|tsx|vue)$/i
function deduplicateArray<T = unknown>(maybeArray: T): T {
function deduplicateArray<T = unknown> (maybeArray: T): T {
if (!Array.isArray(maybeArray)) { return maybeArray }
const fresh: any[] = []
@ -859,7 +859,7 @@ function deduplicateArray<T = unknown>(maybeArray: T): T {
return fresh as T
}
function createPortalProperties(sourceValue: any, options: NuxtOptions, paths: string[]) {
function createPortalProperties (sourceValue: any, options: NuxtOptions, paths: string[]) {
let sharedValue = sourceValue
for (const path of paths) {
@ -879,7 +879,7 @@ function createPortalProperties(sourceValue: any, options: NuxtOptions, paths: s
configurable: false,
enumerable: true,
get: () => sharedValue,
set(value) {
set (value) {
sharedValue = value
},
},

View File

@ -35,7 +35,7 @@ describe('loadNuxt', () => {
ready: true,
overrides: {
hooks: {
ready() {
ready () {
hookRan = true
},
},
@ -48,10 +48,10 @@ describe('loadNuxt', () => {
await Promise.all([
loadNuxt({
cwd: repoRoot,
}),
}),
loadNuxt({
cwd: repoRoot,
})
}),
])
})
})