Skip to content

Commit

Permalink
Update tsup.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
KazariEX authored Dec 1, 2024
1 parent b9e47cd commit 3cd467d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vscode/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { copyFileSync, existsSync, mkdirSync, writeFileSync } from 'node:fs'
import { join } from 'node:path'
import { env } from 'node:process'
import process from 'node:process'
import { resolvePath } from 'mlly'
import { defineConfig } from 'tsup'
import { generateCodeblockPatch } from './syntaxes/codeblock-patch'
Expand All @@ -13,7 +13,7 @@ export default defineConfig({
format: ['cjs'],
target: 'node18',
clean: true,
minify: env.NODE_ENV === 'production',
minify: process.env.NODE_ENV === 'production',
sourcemap: true,
external: [
'vscode',
Expand Down

0 comments on commit 3cd467d

Please sign in to comment.