@couch-kit/client 0.4.4 → 0.5.1
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.
- package/CHANGELOG.md +17 -0
- package/dist/index.js +52 -1946
- package/lib/assets.d.ts +17 -0
- package/lib/assets.d.ts.map +1 -0
- package/lib/client.d.ts +50 -0
- package/lib/client.d.ts.map +1 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/time-sync.d.ts +39 -0
- package/lib/time-sync.d.ts.map +1 -0
- package/package.json +17 -10
- package/tests/time-sync.test.ts +0 -42
- package/tsconfig.json +0 -11
- package/tsconfig.tsbuildinfo +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @couch-kit/client
|
|
2
2
|
|
|
3
|
+
## 0.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix duplicate React bundling by marking react and @couch-kit/core as external in build
|
|
8
|
+
|
|
9
|
+
## 0.5.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 81a6d8d: Add compiled build output — packages now ship JS bundles in `dist/` and TypeScript declarations in `lib/` instead of raw `.ts` source. This ensures compatibility with bundlers that don't transpile `node_modules`.
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [81a6d8d]
|
|
18
|
+
- @couch-kit/core@0.4.0
|
|
19
|
+
|
|
3
20
|
## 0.4.4
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|