Skip to content

Commit ec59ca0

Browse files
committed
chore(cli): stop tracking package-lock.json
package-lock.json should not be version-controlled for the CLI package. git rm --cached it (worktree copy retained), ignore it in .gitignore, and switch CI from npm ci to npm install since the lock file is no longer present in the repository.
1 parent 3361775 commit ec59ca0

3 files changed

Lines changed: 2 additions & 6468 deletions

File tree

.github/workflows/build-cli.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,9 @@ jobs:
3535
- uses: actions/setup-node@v7
3636
with:
3737
node-version: '22'
38-
cache: 'npm'
39-
cache-dependency-path: decx-cli/package-lock.json
4038

4139
- name: Install dependencies
42-
run: npm ci
40+
run: npm install
4341

4442
- name: Type check
4543
run: npm run typecheck

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,4 @@ CLAUDE.md
7676
.omo
7777
.env
7878
.zcode/
79+
decx-cli/package-lock.json

0 commit comments

Comments
 (0)