This commit is contained in:
dap
2024-11-03 11:26:11 +08:00
18 changed files with 34 additions and 25 deletions

View File

@@ -14,7 +14,7 @@ WORKDIR /app
COPY . /app
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
RUN pnpm run build
RUN pnpm run build --filter=\!./docs
RUN echo "Builder Success 🎉"

View File

@@ -46,7 +46,6 @@ export async function run(options: RunOptions) {
process.exit(1);
}
process.env.VITE_CJS_IGNORE_WARNING = '1';
execaCommand(`pnpm --filter=${selectPkg} run ${command}`, {
stdio: 'inherit',
});