Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
josStorer committed Nov 4, 2023
1 parent 3d08919 commit c089550
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -298,18 +298,18 @@ function generateWebpackCallback(finishOutputFunc) {
async function build() {
await deleteOldDir()
if (isProduction && !isAnalyzing) {
await runWebpack(
true,
false,
generateWebpackCallback(() => finishOutput('-without-katex')),
)
await new Promise((r) => setTimeout(r, 5000))
// await runWebpack(
// true,
// false,
// generateWebpackCallback(() => finishOutput('-without-katex')),
// )
// await new Promise((r) => setTimeout(r, 5000))
await runWebpack(
true,
true,
generateWebpackCallback(() => finishOutput('-without-katex-and-tiktoken')),
)
await new Promise((r) => setTimeout(r, 5000))
await new Promise((r) => setTimeout(r, 10000))
}
await runWebpack(
false,
Expand Down

0 comments on commit c089550

Please sign in to comment.