@scalar/workspace-store 0.2.0 → 0.3.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/.turbo/turbo-build.log +6 -3
- package/CHANGELOG.md +12 -0
- package/dist/client.d.ts +41211 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/{create-workspace-store.js → client.js} +15 -30
- package/dist/client.js.map +7 -0
- package/dist/schemas.d.ts +2 -0
- package/dist/schemas.d.ts.map +1 -0
- package/dist/schemas.js +9 -0
- package/dist/schemas.js.map +7 -0
- package/dist/{create-server-workspace-store.d.ts → server.d.ts} +1 -1
- package/dist/server.d.ts.map +1 -0
- package/dist/{create-server-workspace-store.js → server.js} +1 -1
- package/dist/{create-server-workspace-store.js.map → server.js.map} +3 -3
- package/esbuild.ts +4 -2
- package/package.json +18 -8
- package/src/{create-workspace-store.test.ts → client.test.ts} +2 -82
- package/src/{create-workspace-store.ts → client.ts} +45 -40
- package/src/schemas.ts +6 -0
- package/src/{create-server-workspace-store.test.ts → server.test.ts} +1 -1
- package/dist/create-server-workspace-store.d.ts.map +0 -1
- package/dist/create-workspace-store.d.ts +0 -20605
- package/dist/create-workspace-store.d.ts.map +0 -1
- package/dist/create-workspace-store.js.map +0 -7
- package/dist/index.d.ts +0 -4
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -13
- package/dist/index.js.map +0 -7
- package/src/index.ts +0 -8
- package/src/{create-server-workspace-store.ts → server.ts} +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
> @scalar/workspace-store@0.
|
|
2
|
+
> @scalar/workspace-store@0.3.1 build /home/runner/work/scalar/scalar/packages/workspace-store
|
|
3
3
|
> scalar-build-esbuild
|
|
4
4
|
|
|
5
|
+
namespacePath . schemas
|
|
6
|
+
namespacePath . client
|
|
7
|
+
namespacePath . server
|
|
5
8
|
[32mUpdating package.json exports field…[0m
|
|
6
|
-
[34m@scalar/workspace-store: Build completed in
|
|
9
|
+
[34m@scalar/workspace-store: Build completed in 30.95ms[39m
|
|
7
10
|
|
|
8
|
-
> @scalar/workspace-store@0.
|
|
11
|
+
> @scalar/workspace-store@0.3.1 types:build /home/runner/work/scalar/scalar/packages/workspace-store
|
|
9
12
|
> scalar-types-build
|
|
10
13
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @scalar/workspace-store
|
|
2
2
|
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 373214a: fix(workspace-store): remove readFiles plugin from the client store
|
|
8
|
+
|
|
9
|
+
## 0.3.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- bbad7c7: feat(workspace-store): create a sync client store
|
|
14
|
+
|
|
3
15
|
## 0.2.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|