Initial commit

This commit is contained in:
Alejandro Martinez
2026-02-12 02:04:10 +01:00
commit f09af719cf
13433 changed files with 2193445 additions and 0 deletions

2
node_modules/astro/dist/cli/help/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import type { HelpPayload } from '../domain/help-payload.js';
export declare const DEFAULT_HELP_PAYLOAD: HelpPayload;

34
node_modules/astro/dist/cli/help/index.js generated vendored Normal file
View File

@@ -0,0 +1,34 @@
const DEFAULT_HELP_PAYLOAD = {
commandName: "astro",
usage: "[command] [...flags]",
headline: "Build faster websites.",
tables: {
Commands: [
["add", "Add an integration."],
["build", "Build your project and write it to disk."],
["check", "Check your project for errors."],
["create-key", "Create a cryptography key"],
["db", "Manage your Astro database."],
["dev", "Start the development server."],
["docs", "Open documentation in your web browser."],
["info", "List info about your current Astro setup."],
["preview", "Preview your build locally."],
["sync", "Generate content collection types."],
["preferences", "Configure user preferences."],
["telemetry", "Configure telemetry settings."]
],
"Global Flags": [
["--config <path>", "Specify your config file."],
["--root <path>", "Specify your project root folder."],
["--site <url>", "Specify your project site."],
["--base <pathname>", "Specify your project base."],
["--verbose", "Enable verbose logging."],
["--silent", "Disable all logging."],
["--version", "Show the version number and exit."],
["--help", "Show this help message."]
]
}
};
export {
DEFAULT_HELP_PAYLOAD
};