blank project
This commit is contained in:
33
node_modules/astro/dist/cli/build/index.js
generated
vendored
Normal file
33
node_modules/astro/dist/cli/build/index.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
import _build from "../../core/build/index.js";
|
||||
import { printHelp } from "../../core/messages.js";
|
||||
import { flagsToAstroInlineConfig } from "../flags.js";
|
||||
async function build({ flags }) {
|
||||
if (flags?.help || flags?.h) {
|
||||
printHelp({
|
||||
commandName: "astro build",
|
||||
usage: "[...flags]",
|
||||
tables: {
|
||||
Flags: [
|
||||
["--outDir <directory>", `Specify the output directory for the build.`],
|
||||
["--mode", `Specify the mode of the project. Defaults to "production".`],
|
||||
[
|
||||
"--devOutput",
|
||||
"Output a development-based build similar to code transformed in `astro dev`."
|
||||
],
|
||||
[
|
||||
"--force",
|
||||
"Clear the content layer and content collection cache, forcing a full rebuild."
|
||||
],
|
||||
["--help (-h)", "See all available flags."]
|
||||
]
|
||||
},
|
||||
description: `Builds your site for deployment.`
|
||||
});
|
||||
return;
|
||||
}
|
||||
const inlineConfig = flagsToAstroInlineConfig(flags);
|
||||
await _build(inlineConfig, { devOutput: !!flags.devOutput });
|
||||
}
|
||||
export {
|
||||
build
|
||||
};
|
||||
Reference in New Issue
Block a user