We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e1d473 commit 05010e8Copy full SHA for 05010e8
2 files changed
packages/cli/src/core/diffEnv.ts
@@ -30,7 +30,7 @@ export type DiffResult = {
30
export function diffEnv(
31
current: Record<string, string>,
32
example: Record<string, string>,
33
- checkValues = false,
+ checkValues: boolean = false,
34
): DiffResult {
35
const currentKeys = Object.keys(current);
36
const exampleKeys = Object.keys(example);
pnpm-workspace.yaml
@@ -3,7 +3,7 @@ packages:
3
- packages/cli
4
5
# The minimum age of a release before it can be automatically updated by pnpm.
6
-minimumReleaseAge: 4320
+minimumReleaseAge: 1440 # 1 day in minutes
7
8
# The policy to apply when a package is being updated to a version that is lower than the currently installed version.
9
trustPolicy: no-downgrade
0 commit comments