node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import type { CLIContext } from '../cli/types';
interface BuildOptions extends CLIContext {
/**
* Which bundler to use for building.
*
* @default webpack
*/
bundler?: 'webpack' | 'vite';
/**
* Minify the output
*
* @default true
*/
minify?: boolean;
/**
* Generate sourcemaps useful for debugging bugs in the admin panel UI.
*/
sourcemaps?: boolean;
/**
* Print stats for build
*/
stats?: boolean;
}
/**
* @example `$ strapi build`
*
* @description Builds the admin panel of the strapi application.
*/
declare const build: ({ logger, cwd, tsconfig, ...options }: BuildOptions) => Promise<void>;
export { build };
export type { BuildOptions };
//# sourceMappingURL=build.d.ts.map