@tailor-platform/sdk-codemod 0.8.9 → 0.8.11

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @tailor-platform/sdk-codemod
2
2
 
3
+ ## 0.8.11
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2362](https://github.com/tailor-platform/sdk/pull/2362) [`08ff50b`](https://github.com/tailor-platform/sdk/commit/08ff50b50a31c6a27ccb8f6ca409365032d13e0d) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency zod to v4.6.4
8
+
9
+ ## 0.8.10
10
+
11
+ ### Patch Changes
12
+
13
+ - [#2328](https://github.com/tailor-platform/sdk/pull/2328) [`bbb817b`](https://github.com/tailor-platform/sdk/commit/bbb817b87b66963bf5840430665712db15cc4495) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update @inquirer
14
+
15
+ - [#2331](https://github.com/tailor-platform/sdk/pull/2331) [`73cb3fa`](https://github.com/tailor-platform/sdk/commit/73cb3fab10ee9f24d5ade55b1b497d610d8b99e6) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency pkg-types to v2.3.3
16
+
17
+ - [#2350](https://github.com/tailor-platform/sdk/pull/2350) [`4537014`](https://github.com/tailor-platform/sdk/commit/4537014882c2ff0115e09753158dc7eda0bcc767) Thanks [@renovate](https://github.com/apps/renovate)! - chore(deps): update dependency @types/node to v24.13.4
18
+
3
19
  ## 0.8.9
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tailor-platform/sdk-codemod",
3
- "version": "0.8.9",
3
+ "version": "0.8.11",
4
4
  "description": "Codemod runner for Tailor Platform SDK upgrades",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -8,6 +8,9 @@
8
8
  "url": "git+https://github.com/tailor-platform/sdk.git",
9
9
  "directory": "packages/sdk-codemod"
10
10
  },
11
+ "bin": {
12
+ "sdk-codemod": "dist/index.js"
13
+ },
11
14
  "files": [
12
15
  "CHANGELOG.md",
13
16
  "dist",
@@ -21,17 +24,17 @@
21
24
  "diff": "9.0.0",
22
25
  "pathe": "2.0.3",
23
26
  "picomatch": "4.0.7",
24
- "pkg-types": "2.3.2",
27
+ "pkg-types": "2.3.3",
25
28
  "semver": "7.8.5",
26
- "zod": "4.5.4"
29
+ "zod": "4.6.4"
27
30
  },
28
31
  "devDependencies": {
29
32
  "@tailor-platform/shared": "^0.0.0",
30
- "@types/node": "24.13.3",
33
+ "@types/node": "24.13.4",
31
34
  "@types/picomatch": "4.0.3",
32
35
  "@types/semver": "7.8.0",
33
- "eslint-plugin-zod": "4.12.0",
34
- "oxlint": "1.81.0",
36
+ "eslint-plugin-zod": "4.12.1",
37
+ "oxlint": "1.82.0",
35
38
  "oxlint-tsgolint": "7.0.2001",
36
39
  "tsdown": "0.23.0",
37
40
  "typescript": "6.0.3",
@@ -49,8 +52,5 @@
49
52
  "typecheck": "tsc --noEmit",
50
53
  "test": "vitest",
51
54
  "publint": "publint --strict"
52
- },
53
- "bin": {
54
- "sdk-codemod": "dist/index.js"
55
55
  }
56
56
  }