@firtoz/worker-helper 1.3.2 → 1.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 +6 -0
- package/package.json +1 -1
- package/src/cf-typegen.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @firtoz/worker-helper
|
|
2
2
|
|
|
3
|
+
## 1.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`8f3143f`](https://github.com/firtoz/fullstack-toolkit/commit/8f3143ff5d9953350d2388d46ea7c859e7dbeda5) Thanks [@firtoz](https://github.com/firtoz)! - Fix cf-typegen to only include wrangler.json and wrangler.jsonc files, excluding template files like .hbs. Also sort config paths for consistent ordering.
|
|
8
|
+
|
|
3
9
|
## 1.3.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
package/src/cf-typegen.ts
CHANGED
|
@@ -50,7 +50,8 @@ function findAllWranglerConfigs(gitRoot: string): string[] {
|
|
|
50
50
|
.trim()
|
|
51
51
|
.split("\n")
|
|
52
52
|
.filter((line) => line.length > 0)
|
|
53
|
-
.map((relativePath) => path.join(gitRoot, relativePath))
|
|
53
|
+
.map((relativePath) => path.join(gitRoot, relativePath))
|
|
54
|
+
.sort((a, b) => (a < b ? -1 : 1));
|
|
54
55
|
} catch (err) {
|
|
55
56
|
console.warn("⚠ Failed to run git ls-files:", err);
|
|
56
57
|
return [];
|