Skip to content

Commit

Permalink
Remove CI condition from build script
Browse files Browse the repository at this point in the history
  • Loading branch information
thetarnav committed Dec 22, 2024
1 parent 5e1b3e2 commit 9a6ebb5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import * as path from 'node:path'
import * as esb from 'esbuild'

import {
CI,
get_is_dev_from_args,
type Package_Json,
} from './build_shared.ts'
Expand All @@ -23,9 +22,6 @@ const dirname = path.dirname(filename)
{
let tsc_args = ['pnpm', 'build:types']

if (CI) {
tsc_args.push('--noEmitOnError')
}
if (is_dev) {
tsc_args.push('--watch', '--preserveWatchOutput')
}
Expand Down

0 comments on commit 9a6ebb5

Please sign in to comment.