Skip to content

Commit d160d31

Browse files
committed
chore(*): update dependencies
1 parent d81f2f7 commit d160d31

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

biome.jsonc

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
33
"organizeImports": {
44
"enabled": true
55
},
@@ -439,7 +439,10 @@
439439
"useConsistentMemberAccessibility": "error",
440440
"useDeprecatedReason": "error",
441441
"useStrictMode": "error",
442-
"useTrimStartEnd": "error"
442+
"useTrimStartEnd": "error",
443+
"noMissingVarFunction": "error",
444+
"noProcessEnv": "error",
445+
"useComponentExportOnlyModules": "error"
443446
}
444447
}
445448
}

bun.lockb

0 Bytes
Binary file not shown.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"type": "module",
55
"workspaces": ["{packages,plugins,apps,tools,experiments}/**"],
66
"devDependencies": {
7-
"@biomejs/biome": "1.9.0",
7+
"@biomejs/biome": "1.9.2",
88
"@commitlint/cli": "^19.5.0",
99
"@commitlint/config-conventional": "^19.5.0",
1010
"@commitlint/prompt-cli": "^19.5.0",
11-
"@types/bun": "^1.1.9",
11+
"@types/bun": "^1.1.10",
1212
"husky": "^9.1.6",
1313
"typescript": "^5.6.2"
1414
},

packages/core/src/utils/env.ts

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export type Target = 'bun' | 'node'
1414
export const extractEnvs = capsule(
1515
<T extends EmptyType>(callback: ExtractEnvsCallback<T>, target: Target = 'bun') => {
1616
const selectedTarget: BlobType =
17+
// biome-ignore lint/nursery/noProcessEnv: Redundant
1718
target === 'bun' && typeof Bun !== 'undefined' ? Bun.env : process.env
1819

1920
const result = callback(selectedTarget)

0 commit comments

Comments
 (0)