Skip to content

Commit 57b980b

Browse files
SoliEstreclaude
andcommitted
fix(create-estreuv): pin scaffold estreuv dep ^0.2.0 (0.x caret excluded 0.2.0)
G5 pair E2E 발견②: ESTREUV_DEPS estreuv:'^0.1.0' 는 semver 0.x caret 규칙상 0.2.0 을 제외(>=0.1.0 <0.2.0) → 스캐폴드 앱이 구버전 0.1.0(타입 없음)을 받음. ^0.2.0 으로 수정 (estreuv 1.0.0 GA 시 ^1.0.0). 발견①(create-estreuv 미발행 → 스캐폴드 devDep 404)은 publish-ordering 이슈로 G7(create-estreuv publish) 시 자동 해소 — estreuv G3 와 동형. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent a900fa1 commit 57b980b

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

packages/create-estreuv/lib/utils.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ const fs = require('fs');
22
const path = require('path');
33
const { execSync } = require('child_process');
44

5-
// Dependency versions for scaffolded projects. Kept in lockstep with
6-
// packages/estreuv's own dependency ranges.
5+
// Dependency versions for scaffolded projects. Kept in lockstep with the
6+
// latest published estreuv. NOTE: a `^0.x` caret locks the minor (semver
7+
// rule for 0.x), so `^0.1.0` would EXCLUDE 0.2.0 — pin to the current
8+
// published minor. (Becomes ^1.0.0 at the estreuv 1.0.0 GA.)
79
const ESTREUV_DEPS = {
8-
estreuv: '^0.1.0',
10+
estreuv: '^0.2.0',
911
lit: '^3.3.0',
1012
'@lit/context': '^1.1.0'
1113
};

0 commit comments

Comments
 (0)