文件操作 - typecheck.mjs
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/@nuxt/cli/dist/chunks/typecheck.mjs
编辑文件内容
import process from 'node:process'; import { fileURLToPath } from 'node:url'; import { defineCommand } from 'citty'; import { createJiti } from 'jiti'; import { resolve } from 'pathe'; import { isBun } from 'std-env'; import { x } from 'tinyexec'; import { l as loadKit } from '../shared/cli.DlcAx0De.mjs'; import { c as cwdArgs, l as logLevelArgs, b as legacyRootDirArgs } from '../shared/cli.TH4BiEd5.mjs'; import 'node:path'; import 'consola'; const typecheck = defineCommand({ meta: { name: "typecheck", description: "Runs `vue-tsc` to check types throughout your app." }, args: { ...cwdArgs, ...logLevelArgs, ...legacyRootDirArgs }, async run(ctx) { process.env.NODE_ENV = process.env.NODE_ENV || "production"; const cwd = resolve(ctx.args.cwd || ctx.args.rootDir); const { loadNuxt, buildNuxt, writeTypes } = await loadKit(cwd); const nuxt = await loadNuxt({ cwd, overrides: { _prepare: true, logLevel: ctx.args.logLevel } }); await writeTypes(nuxt); await buildNuxt(nuxt); await nuxt.close(); const jiti = createJiti(cwd); const [resolvedTypeScript, resolvedVueTsc] = await Promise.all([ jiti.esmResolve("typescript", { try: true }), jiti.esmResolve("vue-tsc/bin/vue-tsc.js", { try: true }) ]); if (resolvedTypeScript && resolvedVueTsc) { await x(fileURLToPath(resolvedVueTsc), ["--noEmit"], { nodeOptions: { stdio: "inherit", cwd } }); } else { if (isBun) { await x( "bun", "install typescript vue-tsc --global --silent".split(" "), { nodeOptions: { stdio: "inherit", cwd } } ); await x("bunx", "vue-tsc --noEmit".split(" "), { nodeOptions: { stdio: "inherit", cwd } }); } else { await x( "npx", "-p vue-tsc -p typescript vue-tsc --noEmit".split(" "), { nodeOptions: { stdio: "inherit", cwd } } ); } } } }); export { typecheck as default };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件