Skip to content

Commit 05010e8

Browse files
authored
chore: workspace config (#415)
1 parent 1e1d473 commit 05010e8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/cli/src/core/diffEnv.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export type DiffResult = {
3030
export function diffEnv(
3131
current: Record<string, string>,
3232
example: Record<string, string>,
33-
checkValues = false,
33+
checkValues: boolean = false,
3434
): DiffResult {
3535
const currentKeys = Object.keys(current);
3636
const exampleKeys = Object.keys(example);

pnpm-workspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ packages:
33
- packages/cli
44

55
# The minimum age of a release before it can be automatically updated by pnpm.
6-
minimumReleaseAge: 4320
6+
minimumReleaseAge: 1440 # 1 day in minutes
77

88
# The policy to apply when a package is being updated to a version that is lower than the currently installed version.
99
trustPolicy: no-downgrade

0 commit comments

Comments
 (0)