Skip to content

Commit c6f016b

Browse files
committed
chore: prepare v0.1.0-alpha.67
1 parent 13be0eb commit c6f016b

2 files changed

Lines changed: 32 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on Keep a Changelog and the project follows Semantic Version
66

77
## [Unreleased]
88

9+
## [0.1.0-alpha.67] - 2026-04-15
10+
11+
### CI / Tooling
12+
13+
- **release**: Follow-up release tag after the failed `v0.1.0-alpha.66` publish gate; typed the `create-rezi` Windows install regression-test env shape explicitly so strict TypeScript and Biome agree on the same property access pattern during release preflight.
14+
915
## [0.1.0-alpha.66] - 2026-04-15
1016

1117
### CI / Tooling

packages/create-rezi/src/__tests__/index.test.ts

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,31 @@ test("createInstallEnv strips parent npm lifecycle metadata but preserves useful
2525
npm_config_user_agent: "npm/10.8.2 node/v20.19.5 win32 x64 workspaces/false",
2626
} as const;
2727

28-
const childEnv = createInstallEnv(env);
28+
const childEnv = createInstallEnv(env) as NodeJS.ProcessEnv & {
29+
PATH?: string;
30+
HOME?: string;
31+
INIT_CWD?: string;
32+
npm_command?: string;
33+
npm_execpath?: string;
34+
npm_lifecycle_event?: string;
35+
npm_lifecycle_script?: string;
36+
npm_config_local_prefix?: string;
37+
npm_package_name?: string;
38+
npm_package_json?: string;
39+
npm_config_registry?: string;
40+
npm_config_user_agent?: string;
41+
};
2942

30-
assert.equal(childEnv["PATH"], env["PATH"]);
31-
assert.equal(childEnv["HOME"], env["HOME"]);
32-
assert.equal(childEnv["npm_config_registry"], env["npm_config_registry"]);
33-
assert.equal(childEnv["npm_config_user_agent"], env["npm_config_user_agent"]);
34-
assert.equal(childEnv["INIT_CWD"], undefined);
35-
assert.equal(childEnv["npm_command"], undefined);
36-
assert.equal(childEnv["npm_execpath"], undefined);
37-
assert.equal(childEnv["npm_lifecycle_event"], undefined);
38-
assert.equal(childEnv["npm_lifecycle_script"], undefined);
39-
assert.equal(childEnv["npm_config_local_prefix"], undefined);
40-
assert.equal(childEnv["npm_package_name"], undefined);
41-
assert.equal(childEnv["npm_package_json"], undefined);
43+
assert.equal(childEnv.PATH, env.PATH);
44+
assert.equal(childEnv.HOME, env.HOME);
45+
assert.equal(childEnv.npm_config_registry, env.npm_config_registry);
46+
assert.equal(childEnv.npm_config_user_agent, env.npm_config_user_agent);
47+
assert.equal(childEnv.INIT_CWD, undefined);
48+
assert.equal(childEnv.npm_command, undefined);
49+
assert.equal(childEnv.npm_execpath, undefined);
50+
assert.equal(childEnv.npm_lifecycle_event, undefined);
51+
assert.equal(childEnv.npm_lifecycle_script, undefined);
52+
assert.equal(childEnv.npm_config_local_prefix, undefined);
53+
assert.equal(childEnv.npm_package_name, undefined);
54+
assert.equal(childEnv.npm_package_json, undefined);
4255
});

0 commit comments

Comments
 (0)