mirror of
https://github.com/sern-handler/website
synced 2026-06-28 02:32:23 +00:00
feat: migrate to starlight
This commit is contained in:
2
node_modules/astro/dist/cli/check/index.d.ts
generated
vendored
Normal file
2
node_modules/astro/dist/cli/check/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import type { Arguments } from 'yargs-parser';
|
||||
export declare function check(flags: Arguments): Promise<boolean | void>;
|
||||
36
node_modules/astro/dist/cli/check/index.js
generated
vendored
Normal file
36
node_modules/astro/dist/cli/check/index.js
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
import path from "node:path";
|
||||
import { ensureProcessNodeEnv } from "../../core/util.js";
|
||||
import { createLoggerFromFlags, flagsToAstroInlineConfig } from "../flags.js";
|
||||
import { getPackage } from "../install-package.js";
|
||||
async function check(flags) {
|
||||
ensureProcessNodeEnv("production");
|
||||
const logger = createLoggerFromFlags(flags);
|
||||
const getPackageOpts = { skipAsk: flags.yes || flags.y, cwd: flags.root };
|
||||
const checkPackage = await getPackage(
|
||||
"@astrojs/check",
|
||||
logger,
|
||||
getPackageOpts,
|
||||
["typescript"]
|
||||
);
|
||||
const typescript = await getPackage("typescript", logger, getPackageOpts);
|
||||
if (!checkPackage || !typescript) {
|
||||
logger.error(
|
||||
"check",
|
||||
"The `@astrojs/check` and `typescript` packages are required for this command to work. Please manually install them into your project and try again."
|
||||
);
|
||||
return;
|
||||
}
|
||||
const { default: sync } = await import("../../core/sync/index.js");
|
||||
const inlineConfig = flagsToAstroInlineConfig(flags);
|
||||
const exitCode = await sync(inlineConfig);
|
||||
if (exitCode !== 0) {
|
||||
process.exit(exitCode);
|
||||
}
|
||||
const { check: checker, parseArgsAsCheckConfig } = checkPackage;
|
||||
const config = parseArgsAsCheckConfig(process.argv);
|
||||
logger.info("check", `Getting diagnostics for Astro files in ${path.resolve(config.root)}...`);
|
||||
return await checker(config);
|
||||
}
|
||||
export {
|
||||
check
|
||||
};
|
||||
Reference in New Issue
Block a user