diff --git a/bun.lockb b/bun.lockb index b3133b6f..b5dd8581 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/examples/bun-build/package.json b/examples/bun-build/package.json index fee368b8..5b1c5d00 100644 --- a/examples/bun-build/package.json +++ b/examples/bun-build/package.json @@ -11,6 +11,7 @@ "devDependencies": { "@types/bun": "latest", "npm-run-all2": "^6.2.0", + "std-env": "^3.7.0", "typia": "^6.1.0" }, "peerDependencies": { diff --git a/examples/bun-build/preload.ts b/examples/bun-build/preload.ts index 8ddd1f30..fd3b52b0 100644 --- a/examples/bun-build/preload.ts +++ b/examples/bun-build/preload.ts @@ -1,4 +1,8 @@ import { plugin } from 'bun'; -import UnpluginTypia from '@ryoppippi/unplugin-typia/bun' +import UnpluginTypia from '@ryoppippi/unplugin-typia/bun'; +import { isCI } from "std-env"; -plugin(UnpluginTypia({cache: true, log: 'verbose'})) +plugin(UnpluginTypia({ + cache: isCI, + log: 'verbose' +}))