Skip to content
Open
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
3 changes: 3 additions & 0 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
- name: Test Angular SDK
run: npm run test:angular

- name: Test Svelte SDK
run: npm run test:svelte

format-lint:
runs-on: ubuntu-latest

Expand Down
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"singleQuote": true,
"printWidth": 120
"printWidth": 120,
"plugins": ["prettier-plugin-svelte"]
}
3 changes: 2 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"packages/web": "1.10.0",
"packages/server": "1.23.0",
"packages/shared": "1.12.0",
"packages/angular/projects/angular-sdk": "1.3.2"
"packages/angular/projects/angular-sdk": "1.3.2",
"packages/svelte": "0.0.0"
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ For details, including API documentation, see the respective README files.
- [NestJS SDK](./packages/nest/README.md), a distribution of the Server SDK with built-in NestJS-specific features.
- [Web SDK](./packages/web/README.md), for use in the web browser.
- [React SDK](./packages/react//README.md), a distribution of the Web SDK with built-in React-specific features.
- [Svelte SDK](./packages/svelte/README.md), a distribution of the Web SDK with built-in Svelte-specific features.

Each have slightly different APIs, but share many underlying types and components.

Expand Down
Loading
Loading