@synnaxlabs/client 0.20.0 → 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
 
2
- > @synnaxlabs/client@0.20.0 build /home/runner/work/synnax/synnax/client/ts
2
+ > @synnaxlabs/client@0.21.0 build /home/runner/work/synnax/synnax/client/ts
3
3
  > tsc --noEmit && vite build
4
4
 
5
5
  vite v5.1.2 building for production...
@@ -9,8 +9,8 @@ rendering chunks...
9
9
  
10
10
  [vite:dts] Start generate declaration files...
11
11
  computing gzip size...
12
- dist/client.js 465.47 kB │ gzip: 97.43 kB │ map: 1,062.29 kB
13
- [vite:dts] Declaration files built in 4062ms.
12
+ dist/client.js 465.72 kB │ gzip: 97.55 kB │ map: 1,064.01 kB
13
+ [vite:dts] Declaration files built in 4013ms.
14
14
  
15
- dist/client.cjs 308.94 kB │ gzip: 75.84 kB │ map: 1,010.66 kB
16
- ✓ built in 5.39s
15
+ dist/client.cjs 309.17 kB │ gzip: 75.93 kB │ map: 1,012.30 kB
16
+ ✓ built in 5.35s
package/README.md CHANGED
@@ -10,3 +10,16 @@ Detailed documentation is available [here](https://docs.synnaxlabs.com/typescrip
10
10
  npm install @synnaxlabs/client
11
11
  ```
12
12
 
13
+ ## Development
14
+
15
+ Synnax's TypeScript client unit tests are written in [Vitest](https://vitest.dev/). To test the framework, run
16
+
17
+ ```bash
18
+ pnpm test
19
+ ```
20
+
21
+ Before running tests, make sure you build upstream dependencies, as specified in [this document](../../docs/tech/typescript/build.md):
22
+
23
+ ```
24
+ pnpm build:PACKAGE_NAME
25
+ ```