You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`config/defaults/development.js`, `production.js`, etc. |`git checkout --theirs <file>` (stack-owned defaults) |
31
+
|`package-lock.json`|`git checkout --theirs package-lock.json` — regenerate after `package.json` is resolved |
32
+
|`ERRORS.md`| Merge stack entries + project entries — never drop lines |
33
+
|`MIGRATION.md` (if present) | Read it (needed for Phase 2), then `git checkout --theirs MIGRATION.md`|
34
+
|`package.json`|`git checkout --ours package.json` then merge upstream version bumps |
35
+
| Downstream-only new files (new modules, helpers, lib additions, scripts) | Never delete — these do not exist in the stack, `git checkout --ours <file>` if flagged |
36
+
37
+
After resolving `package.json`:
19
38
20
39
```bash
21
-
git fetch devkit-node
40
+
npm install --package-lock-only
41
+
git add package-lock.json
22
42
```
23
43
24
-
### 3. Merge the stack updates
44
+
Stage all resolved files and complete the merge:
25
45
26
46
```bash
27
-
git merge devkit-node/master
47
+
git add -u
48
+
git merge --continue
28
49
```
29
50
30
-
### 4. Handle conflicts
51
+
### 3. `/verify`
31
52
32
-
Focus on these high-conflict areas:
53
+
All failures here are regressions from conflict resolution. Fix before Phase 2.
0 commit comments