Skip to content

Commit 7fd26d2

Browse files
Do not omit optional dependencies when building (#1018)
1 parent 1127d8a commit 7fd26d2

File tree

4 files changed

+149
-157
lines changed

4 files changed

+149
-157
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
- name: Build packages
3232
run: |
33-
npm ci --omit=optional
33+
npm ci
3434
npm run build --ws
3535
3636
- name: Git commit and push

.github/workflows/windows-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
node-version: 24.x
4040

4141
- name: Install dependencies
42-
run: npm ci --omit=optional
42+
run: npm ci
4343

4444
- name: Run tests
4545
run: npm run test:ci

package-lock.json

Lines changed: 146 additions & 154 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/modules/couchbase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
"testcontainers": "^11.0.0"
3333
},
3434
"devDependencies": {
35-
"couchbase": "4.4.6"
35+
"couchbase": "^4.4.5"
3636
}
3737
}

0 commit comments

Comments
 (0)