@tailor-platform/sdk-codemod 0.3.1 → 0.3.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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # @tailor-platform/sdk-codemod
2
2
 
3
+ ## 0.3.3
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [#1598](https://github.com/tailor-platform/sdk/pull/1598) [`a5a4c58`](https://github.com/tailor-platform/sdk/commit/a5a4c58cabc24af3088d85c7a0d975d5be459def) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency politty to v0.10.1
9
+
10
+ ## 0.3.2
11
+ ### Patch Changes
12
+
13
+
14
+
15
+ - [#1525](https://github.com/tailor-platform/sdk/pull/1525) [`425a19d`](https://github.com/tailor-platform/sdk/commit/425a19dd58da6e373b739d3b3e838c2ff3d1736a) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency semver to v7.8.5
16
+
17
+
18
+
19
+ - [#1533](https://github.com/tailor-platform/sdk/pull/1533) [`e3bc2ce`](https://github.com/tailor-platform/sdk/commit/e3bc2ce65ab30ee53e5de0eb48ca6c24049fcd1b) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency politty to v0.9.2
20
+
21
+
22
+
23
+ - [#1554](https://github.com/tailor-platform/sdk/pull/1554) [`a2ca1f9`](https://github.com/tailor-platform/sdk/commit/a2ca1f989a69153138ddef66931f1e8a94c8c3e9) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency @ast-grep/napi to v0.44.0
24
+
3
25
  ## 0.3.1
4
26
  ### Patch Changes
5
27
 
@@ -102,7 +102,7 @@ function rebuildImportStatement(importStmt, globalEmittedRenamed, unauthenticate
102
102
  touched: true
103
103
  };
104
104
  }
105
- const SCOPE_KINDS = new Set([
105
+ const SCOPE_KINDS = /* @__PURE__ */ new Set([
106
106
  "statement_block",
107
107
  "function_body",
108
108
  "for_statement",
package/dist/index.js CHANGED
@@ -142,7 +142,7 @@ function getApplicableCodemods(fromVersion, toVersion) {
142
142
  /** Default file patterns for TypeScript files. */
143
143
  const DEFAULT_FILE_PATTERNS = ["**/*.{ts,tsx,mts,cts}"];
144
144
  /** Directory names always excluded from file scanning. */
145
- const EXCLUDE_DIRS = new Set([
145
+ const EXCLUDE_DIRS = /* @__PURE__ */ new Set([
146
146
  "node_modules",
147
147
  "dist",
148
148
  ".git"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tailor-platform/sdk-codemod",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "Codemod runner for Tailor Platform SDK upgrades",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -16,24 +16,24 @@
16
16
  ],
17
17
  "type": "module",
18
18
  "dependencies": {
19
- "@ast-grep/napi": "0.43.0",
19
+ "@ast-grep/napi": "0.44.0",
20
20
  "chalk": "5.6.2",
21
21
  "diff": "9.0.0",
22
22
  "pathe": "2.0.3",
23
23
  "picomatch": "4.0.4",
24
24
  "pkg-types": "2.3.1",
25
- "politty": "0.6.0",
26
- "semver": "7.8.4",
25
+ "politty": "0.10.1",
26
+ "semver": "7.8.5",
27
27
  "zod": "4.4.3"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "24.13.2",
31
31
  "@types/picomatch": "4.0.3",
32
32
  "@types/semver": "7.7.1",
33
- "oxlint": "1.69.0",
34
- "tsdown": "0.22.2",
35
- "typescript": "5.9.3",
36
- "vitest": "4.1.8"
33
+ "oxlint": "1.71.0",
34
+ "tsdown": "0.22.3",
35
+ "typescript": "6.0.3",
36
+ "vitest": "4.1.9"
37
37
  },
38
38
  "scripts": {
39
39
  "build": "tsdown",