@twin.org/nameof-transformer 0.0.2-next.20 → 0.0.2-next.21

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.
@@ -165,7 +165,7 @@ function visitNode(node) {
165
165
  }
166
166
  }
167
167
  else if (ts__namespace.isImportDeclaration(node) &&
168
- node.moduleSpecifier.getText().includes("@twin.org/nameof")) {
168
+ node.moduleSpecifier.getText().includes('"@twin.org/nameof"')) {
169
169
  // Is this an import of @twin.org/nameof
170
170
  // e.g. import { nameof } from "@twin.org/nameof";
171
171
  // if it is then return undefined to remove the node
@@ -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.20"; // x-release-please-version
247
+ const version = "0.0.2-next.21"; // x-release-please-version
248
248
  /**
249
249
  * Exports the factory name.
250
250
  * @returns The factory.
@@ -142,7 +142,7 @@ function visitNode(node) {
142
142
  }
143
143
  }
144
144
  else if (ts.isImportDeclaration(node) &&
145
- node.moduleSpecifier.getText().includes("@twin.org/nameof")) {
145
+ node.moduleSpecifier.getText().includes('"@twin.org/nameof"')) {
146
146
  // Is this an import of @twin.org/nameof
147
147
  // e.g. import { nameof } from "@twin.org/nameof";
148
148
  // if it is then return undefined to remove the node
@@ -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.20"; // x-release-please-version
224
+ const version = "0.0.2-next.21"; // x-release-please-version
225
225
  /**
226
226
  * Exports the factory name.
227
227
  * @returns The factory.
@@ -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.20";
11
+ export declare const version = "0.0.2-next.21";
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.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
+
5
+
6
+ ### Features
7
+
8
+ * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
9
+
3
10
  ## [0.0.2-next.20](https://github.com/twinfoundation/framework/compare/nameof-transformer-v0.0.2-next.19...nameof-transformer-v0.0.2-next.20) (2025-10-02)
4
11
 
5
12
 
@@ -1,6 +1,6 @@
1
1
  # Variable: version
2
2
 
3
- > `const` **version**: `"0.0.2-next.20"` = `"0.0.2-next.20"`
3
+ > `const` **version**: `"0.0.2-next.21"` = `"0.0.2-next.21"`
4
4
 
5
5
  Exports the factory version.
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/nameof-transformer",
3
- "version": "0.0.2-next.20",
3
+ "version": "0.0.2-next.21",
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",
@@ -38,5 +38,9 @@
38
38
  "iota",
39
39
  "framework",
40
40
  "blockchain"
41
- ]
41
+ ],
42
+ "bugs": {
43
+ "url": "git+https://github.com/twinfoundation/framework/issues"
44
+ },
45
+ "homepage": "https://twindev.org"
42
46
  }