@twin.org/nameof-transformer 0.0.2-next.21 → 0.0.2-next.22
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/dist/cjs/index.cjs
CHANGED
|
@@ -244,7 +244,7 @@ const factory = () => transformerFactory;
|
|
|
244
244
|
* Exports the factory version.
|
|
245
245
|
* @returns The factory.
|
|
246
246
|
*/
|
|
247
|
-
const version = "0.0.2-next.
|
|
247
|
+
const version = "0.0.2-next.22"; // x-release-please-version
|
|
248
248
|
/**
|
|
249
249
|
* Exports the factory name.
|
|
250
250
|
* @returns The factory.
|
package/dist/esm/index.mjs
CHANGED
|
@@ -221,7 +221,7 @@ const factory = () => transformerFactory;
|
|
|
221
221
|
* Exports the factory version.
|
|
222
222
|
* @returns The factory.
|
|
223
223
|
*/
|
|
224
|
-
const version = "0.0.2-next.
|
|
224
|
+
const version = "0.0.2-next.22"; // x-release-please-version
|
|
225
225
|
/**
|
|
226
226
|
* Exports the factory name.
|
|
227
227
|
* @returns The factory.
|
package/dist/types/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare const factory: () => ts.TransformerFactory<ts.Node>;
|
|
|
8
8
|
* Exports the factory version.
|
|
9
9
|
* @returns The factory.
|
|
10
10
|
*/
|
|
11
|
-
export declare const version = "0.0.2-next.
|
|
11
|
+
export declare const version = "0.0.2-next.22";
|
|
12
12
|
/**
|
|
13
13
|
* Exports the factory name.
|
|
14
14
|
* @returns The factory.
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @twin.org/nameof-transformer - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.22](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.21...nameof-transformer-v0.0.2-next.22) (2025-10-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **nameof-transformer:** Synchronize repo versions
|
|
9
|
+
|
|
3
10
|
## [0.0.2-next.21](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.20...nameof-transformer-v0.0.2-next.21) (2025-10-09)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/nameof-transformer",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.22",
|
|
4
4
|
"description": "A TypeScript transformer which converts types and properties to their actual name for use at runtime",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"typescript": "5.9.
|
|
17
|
+
"typescript": "5.9.3"
|
|
18
18
|
},
|
|
19
19
|
"main": "./dist/cjs/index.cjs",
|
|
20
20
|
"module": "./dist/esm/index.mjs",
|