Skip to content

Commit 19b7413

Browse files
fix(component): handle scenario with invalid visualization (#6)
* fix(component): handle scenario with invalid visualization * feat(chore): fix release scripts with npm ci and ignore scripts * feat(chore): rebuild script for sqlite3 added * chore(release): bump version to 1.15.0 and update dependencies - Update package version from 1.14.0 to 1.15.0 - Update tslib dependencies across various @loopback packages - Simplify husky prepare-commit-msg hook configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * fix(ai): change phrasing of some context * feat(ai): minor prompt changes --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent 21c9d67 commit 19b7413

File tree

13 files changed

+213
-647
lines changed

13 files changed

+213
-647
lines changed

.github/workflows/main.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ jobs:
2121
node-version: '20.x'
2222

2323
- name: Install Dependencies 📌
24-
run: npm ci
24+
run: npm ci --ignore-scripts
25+
26+
- name: Build the pending packages 🏗️
27+
run: npm rebuild sqlite3
2528

2629
- name: Run Test Cases 🔧
2730
run: npm run test

.github/workflows/release.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ jobs:
3333
CONFIG_EMAIL: ${{ vars.RELEASE_COMMIT_EMAIL }}
3434

3535
- name: Install 📌
36-
run: npm install
36+
run: npm ci --ignore-scripts
37+
38+
- name: Build the pending packages 🏗️
39+
run: npm rebuild sqlite3
40+
3741
- name: Test 🔧
3842
run: npm run test
3943
- name: Semantic Publish to NPM 🚀

.husky/prepare-commit-msg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
exec < /dev/tty && npx cz --hook || true

0 commit comments

Comments
 (0)