@tailor-platform/sdk 0.11.2 → 0.11.3
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 +6 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @tailor-platform/sdk
|
|
2
2
|
|
|
3
|
+
## 0.11.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#75](https://github.com/tailor-platform/sdk/pull/75) [`d05e581`](https://github.com/tailor-platform/sdk/commit/d05e58142c3741c35a731ec1fe770a24d7aa3377) Thanks [@riku99](https://github.com/riku99)! - Fix build script to work on Windows by adding cross-env
|
|
8
|
+
|
|
3
9
|
## 0.11.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tailor-platform/sdk",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.3",
|
|
4
4
|
"description": "Tailor Platform SDK - The SDK to work with Tailor Platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/configure/index.mjs",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@badgateway/oauth2-client": "3.3.1",
|
|
43
43
|
"@bufbuild/protobuf": "2.10.1",
|
|
44
|
-
"@connectrpc/connect": "2.1.
|
|
45
|
-
"@connectrpc/connect-node": "2.1.
|
|
44
|
+
"@connectrpc/connect": "2.1.1",
|
|
45
|
+
"@connectrpc/connect-node": "2.1.1",
|
|
46
46
|
"@standard-schema/spec": "1.0.0",
|
|
47
47
|
"@urql/core": "5.2.0",
|
|
48
48
|
"chalk": "5.6.2",
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
"@tailor-platform/function-types": "0.7.2",
|
|
73
73
|
"@types/madge": "5.0.3",
|
|
74
74
|
"@types/node": "22.19.1",
|
|
75
|
+
"cross-env": "^10.1.0",
|
|
75
76
|
"eslint": "9.39.1",
|
|
76
77
|
"globals": "16.5.0",
|
|
77
78
|
"sonda": "0.10.0",
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
},
|
|
83
84
|
"scripts": {
|
|
84
85
|
"test": "vitest",
|
|
85
|
-
"build": "tsdown && FORCE_CREATE=1 node postinstall.mjs",
|
|
86
|
+
"build": "tsdown && cross-env FORCE_CREATE=1 node postinstall.mjs",
|
|
86
87
|
"lint": "eslint --cache .",
|
|
87
88
|
"lint:fix": "eslint --cache . --fix",
|
|
88
89
|
"typecheck": "tsc --noEmit",
|