Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/initial-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@chatcops/core": minor
"@chatcops/server": minor
"@chatcops/widget": minor
---

Initial release of ChatCops packages with AI provider abstraction, server adapters, and embeddable chat widget.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ jobs:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 9

- uses: actions/setup-node@v4
with:
Expand All @@ -23,11 +21,11 @@ jobs:

- run: pnpm install --frozen-lockfile

- name: Build
run: pnpm -r build

- name: Typecheck
run: pnpm -r typecheck

- name: Test
run: pnpm test

- name: Build
run: pnpm -r build
8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ jobs:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 9

- uses: actions/setup-node@v4
with:
Expand All @@ -28,15 +26,15 @@ jobs:

- run: pnpm install --frozen-lockfile

- name: Build
run: pnpm -r build

- name: Typecheck
run: pnpm -r typecheck

- name: Test
run: pnpm test

- name: Build
run: pnpm -r build

- name: Create Release PR or Publish
id: changesets
uses: changesets/action@v1
Expand Down
3 changes: 3 additions & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
Expand Down
3 changes: 3 additions & 0 deletions packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
"import": "./dist/adapters/cloudflare.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
Expand Down