@twin.org/nameof-vitest-plugin 0.0.3-next.9 → 0.0.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/README.md +7 -3
- package/dist/es/nameOfPlugin.js +9 -1
- package/dist/es/nameOfPlugin.js.map +1 -1
- package/dist/types/nameOfPlugin.d.ts +7 -1
- package/docs/changelog.md +641 -80
- package/docs/configuration.md +1 -1
- package/docs/examples.md +33 -0
- package/docs/reference/functions/nameOfPluginTransform.md +8 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
# TWIN Nameof Vitest Plugin
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This package is part of the framework workspace and provides vitest plugin which perform the nameof transformation to support consistent development workflows across the ecosystem.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```shell
|
|
8
|
-
npm install @twin.org/nameof-vitest-plugin
|
|
8
|
+
npm install -D @twin.org/nameof-vitest-plugin
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Configuration
|
|
12
12
|
|
|
13
|
-
Configuration
|
|
13
|
+
Configuration options are documented in [docs/configuration.md](docs/configuration.md)
|
|
14
|
+
|
|
15
|
+
## Examples
|
|
16
|
+
|
|
17
|
+
Usage of the APIs is shown in the examples [docs/examples.md](docs/examples.md)
|
|
14
18
|
|
|
15
19
|
## Reference
|
|
16
20
|
|
package/dist/es/nameOfPlugin.js
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
// Copyright 2024 IOTA Stiftung.
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0.
|
|
3
3
|
import { manual } from "@twin.org/nameof-transformer";
|
|
4
|
-
|
|
4
|
+
/**
|
|
5
|
+
* Transforms the code using the nameOf plugin.
|
|
6
|
+
* @param code The code to transform.
|
|
7
|
+
* @param id The id of the file being transformed.
|
|
8
|
+
* @returns The transformed code.
|
|
9
|
+
*/
|
|
10
|
+
export function nameOfPluginTransform(code, id) {
|
|
11
|
+
return manual(code);
|
|
12
|
+
}
|
|
5
13
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
6
14
|
export const NameOfPlugin = {
|
|
7
15
|
name: "name-of",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nameOfPlugin.js","sourceRoot":"","sources":["../../src/nameOfPlugin.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAC;AAGtD,MAAM,
|
|
1
|
+
{"version":3,"file":"nameOfPlugin.js","sourceRoot":"","sources":["../../src/nameOfPlugin.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAC;AAGtD;;;;;GAKG;AACH,MAAM,UAAU,qBAAqB,CAAC,IAAY,EAAE,EAAU;IAC7D,OAAO,MAAM,CAAC,IAAI,CAAC,CAAC;AACrB,CAAC;AAED,gEAAgE;AAChE,MAAM,CAAC,MAAM,YAAY,GAAW;IACnC,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,qBAAqB;CAChC,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport { manual } from \"@twin.org/nameof-transformer\";\nimport type { Plugin } from \"vitest/config\";\n\n/**\n * Transforms the code using the nameOf plugin.\n * @param code The code to transform.\n * @param id The id of the file being transformed.\n * @returns The transformed code.\n */\nexport function nameOfPluginTransform(code: string, id: string): string {\n\treturn manual(code);\n}\n\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const NameOfPlugin: Plugin = {\n\tname: \"name-of\",\n\tenforce: \"pre\",\n\ttransform: nameOfPluginTransform\n};\n"]}
|
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
import type { Plugin } from "vitest/config";
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* Transforms the code using the nameOf plugin.
|
|
4
|
+
* @param code The code to transform.
|
|
5
|
+
* @param id The id of the file being transformed.
|
|
6
|
+
* @returns The transformed code.
|
|
7
|
+
*/
|
|
8
|
+
export declare function nameOfPluginTransform(code: string, id: string): string;
|
|
3
9
|
export declare const NameOfPlugin: Plugin;
|
package/docs/changelog.md
CHANGED
|
@@ -1,6 +1,567 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3
|
|
3
|
+
## [0.0.3](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3...nameof-vitest-plugin-v0.0.3) (2026-05-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* release to production ([b24cba1](https://github.com/iotaledger/twin-framework/commit/b24cba1b6a969278d638e632590602ec881e49fb))
|
|
9
|
+
* release to production ([787287d](https://github.com/iotaledger/twin-framework/commit/787287d06ea8319657401589d61fff369310c422))
|
|
10
|
+
* release to production ([53f4843](https://github.com/iotaledger/twin-framework/commit/53f484326b2851d7a506d2620db24c4a65cee7b3))
|
|
11
|
+
* release to production ([56cda4d](https://github.com/iotaledger/twin-framework/commit/56cda4da93e978c5be19ec7cfd421ae2a7fe4147))
|
|
12
|
+
* release to production ([f7c6586](https://github.com/iotaledger/twin-framework/commit/f7c6586f6976b903b647b4c5ac5ad9421e0c9051))
|
|
13
|
+
* release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
|
|
14
|
+
* release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
|
|
15
|
+
* release to production ([#330](https://github.com/iotaledger/twin-framework/issues/330)) ([d73f565](https://github.com/iotaledger/twin-framework/commit/d73f565588d156d23ef49b2a5718973756f7a696))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Miscellaneous Chores
|
|
19
|
+
|
|
20
|
+
* release to production ([63cae24](https://github.com/iotaledger/twin-framework/commit/63cae2401f6c11f93b2a01260b665064e8bd28e0))
|
|
21
|
+
|
|
22
|
+
## [0.0.3-next.47](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.46...nameof-vitest-plugin-v0.0.3-next.47) (2026-05-25)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Miscellaneous Chores
|
|
26
|
+
|
|
27
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Dependencies
|
|
31
|
+
|
|
32
|
+
* The following workspace dependencies were updated
|
|
33
|
+
* dependencies
|
|
34
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
35
|
+
|
|
36
|
+
## [0.0.3-next.46](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.45...nameof-vitest-plugin-v0.0.3-next.46) (2026-05-22)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Miscellaneous Chores
|
|
40
|
+
|
|
41
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Dependencies
|
|
45
|
+
|
|
46
|
+
* The following workspace dependencies were updated
|
|
47
|
+
* dependencies
|
|
48
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
49
|
+
|
|
50
|
+
## [0.0.3-next.45](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.44...nameof-vitest-plugin-v0.0.3-next.45) (2026-05-21)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Miscellaneous Chores
|
|
54
|
+
|
|
55
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Dependencies
|
|
59
|
+
|
|
60
|
+
* The following workspace dependencies were updated
|
|
61
|
+
* dependencies
|
|
62
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
63
|
+
|
|
64
|
+
## [0.0.3-next.44](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.43...nameof-vitest-plugin-v0.0.3-next.44) (2026-05-19)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Features
|
|
68
|
+
|
|
69
|
+
* update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
### Dependencies
|
|
73
|
+
|
|
74
|
+
* The following workspace dependencies were updated
|
|
75
|
+
* dependencies
|
|
76
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
77
|
+
|
|
78
|
+
## [0.0.3-next.43](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.42...nameof-vitest-plugin-v0.0.3-next.43) (2026-05-18)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Miscellaneous Chores
|
|
82
|
+
|
|
83
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Dependencies
|
|
87
|
+
|
|
88
|
+
* The following workspace dependencies were updated
|
|
89
|
+
* dependencies
|
|
90
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
91
|
+
|
|
92
|
+
## [0.0.3-next.42](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.41...nameof-vitest-plugin-v0.0.3-next.42) (2026-05-15)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
### Miscellaneous Chores
|
|
96
|
+
|
|
97
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### Dependencies
|
|
101
|
+
|
|
102
|
+
* The following workspace dependencies were updated
|
|
103
|
+
* dependencies
|
|
104
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
105
|
+
|
|
106
|
+
## [0.0.3-next.41](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.40...nameof-vitest-plugin-v0.0.3-next.41) (2026-05-13)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Miscellaneous Chores
|
|
110
|
+
|
|
111
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
### Dependencies
|
|
115
|
+
|
|
116
|
+
* The following workspace dependencies were updated
|
|
117
|
+
* dependencies
|
|
118
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
119
|
+
|
|
120
|
+
## [0.0.3-next.40](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.39...nameof-vitest-plugin-v0.0.3-next.40) (2026-05-13)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Miscellaneous Chores
|
|
124
|
+
|
|
125
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
### Dependencies
|
|
129
|
+
|
|
130
|
+
* The following workspace dependencies were updated
|
|
131
|
+
* dependencies
|
|
132
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
133
|
+
|
|
134
|
+
## [0.0.3-next.39](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.38...nameof-vitest-plugin-v0.0.3-next.39) (2026-05-13)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### Miscellaneous Chores
|
|
138
|
+
|
|
139
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
### Dependencies
|
|
143
|
+
|
|
144
|
+
* The following workspace dependencies were updated
|
|
145
|
+
* dependencies
|
|
146
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
147
|
+
|
|
148
|
+
## [0.0.3-next.38](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.37...nameof-vitest-plugin-v0.0.3-next.38) (2026-05-11)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Features
|
|
152
|
+
|
|
153
|
+
* typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
### Dependencies
|
|
157
|
+
|
|
158
|
+
* The following workspace dependencies were updated
|
|
159
|
+
* dependencies
|
|
160
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
161
|
+
|
|
162
|
+
## [0.0.3-next.37](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.36...nameof-vitest-plugin-v0.0.3-next.37) (2026-05-07)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
### Miscellaneous Chores
|
|
166
|
+
|
|
167
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
### Dependencies
|
|
171
|
+
|
|
172
|
+
* The following workspace dependencies were updated
|
|
173
|
+
* dependencies
|
|
174
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
175
|
+
|
|
176
|
+
## [0.0.3-next.36](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.35...nameof-vitest-plugin-v0.0.3-next.36) (2026-05-07)
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
### Miscellaneous Chores
|
|
180
|
+
|
|
181
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
### Dependencies
|
|
185
|
+
|
|
186
|
+
* The following workspace dependencies were updated
|
|
187
|
+
* dependencies
|
|
188
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
189
|
+
|
|
190
|
+
## [0.0.3-next.35](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.34...nameof-vitest-plugin-v0.0.3-next.35) (2026-05-06)
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
### Miscellaneous Chores
|
|
194
|
+
|
|
195
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
### Dependencies
|
|
199
|
+
|
|
200
|
+
* The following workspace dependencies were updated
|
|
201
|
+
* dependencies
|
|
202
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
203
|
+
|
|
204
|
+
## [0.0.3-next.34](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.33...nameof-vitest-plugin-v0.0.3-next.34) (2026-05-06)
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
### Miscellaneous Chores
|
|
208
|
+
|
|
209
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
### Dependencies
|
|
213
|
+
|
|
214
|
+
* The following workspace dependencies were updated
|
|
215
|
+
* dependencies
|
|
216
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
217
|
+
|
|
218
|
+
## [0.0.3-next.33](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.32...nameof-vitest-plugin-v0.0.3-next.33) (2026-05-05)
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
### Miscellaneous Chores
|
|
222
|
+
|
|
223
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
### Dependencies
|
|
227
|
+
|
|
228
|
+
* The following workspace dependencies were updated
|
|
229
|
+
* dependencies
|
|
230
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
231
|
+
|
|
232
|
+
## [0.0.3-next.32](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.31...nameof-vitest-plugin-v0.0.3-next.32) (2026-04-30)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
### Miscellaneous Chores
|
|
236
|
+
|
|
237
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
### Dependencies
|
|
241
|
+
|
|
242
|
+
* The following workspace dependencies were updated
|
|
243
|
+
* dependencies
|
|
244
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
245
|
+
|
|
246
|
+
## [0.0.3-next.31](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.30...nameof-vitest-plugin-v0.0.3-next.31) (2026-04-14)
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
### Miscellaneous Chores
|
|
250
|
+
|
|
251
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
### Dependencies
|
|
255
|
+
|
|
256
|
+
* The following workspace dependencies were updated
|
|
257
|
+
* dependencies
|
|
258
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
259
|
+
|
|
260
|
+
## [0.0.3-next.30](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.29...nameof-vitest-plugin-v0.0.3-next.30) (2026-04-14)
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
### Miscellaneous Chores
|
|
264
|
+
|
|
265
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
### Dependencies
|
|
269
|
+
|
|
270
|
+
* The following workspace dependencies were updated
|
|
271
|
+
* dependencies
|
|
272
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
273
|
+
|
|
274
|
+
## [0.0.3-next.29](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.28...nameof-vitest-plugin-v0.0.3-next.29) (2026-04-14)
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
### Miscellaneous Chores
|
|
278
|
+
|
|
279
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
### Dependencies
|
|
283
|
+
|
|
284
|
+
* The following workspace dependencies were updated
|
|
285
|
+
* dependencies
|
|
286
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
287
|
+
|
|
288
|
+
## [0.0.3-next.28](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.27...nameof-vitest-plugin-v0.0.3-next.28) (2026-03-27)
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
### Miscellaneous Chores
|
|
292
|
+
|
|
293
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
### Dependencies
|
|
297
|
+
|
|
298
|
+
* The following workspace dependencies were updated
|
|
299
|
+
* dependencies
|
|
300
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
301
|
+
|
|
302
|
+
## [0.0.3-next.27](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.26...nameof-vitest-plugin-v0.0.3-next.27) (2026-03-27)
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
### Miscellaneous Chores
|
|
306
|
+
|
|
307
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
### Dependencies
|
|
311
|
+
|
|
312
|
+
* The following workspace dependencies were updated
|
|
313
|
+
* dependencies
|
|
314
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
315
|
+
|
|
316
|
+
## [0.0.3-next.26](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.25...nameof-vitest-plugin-v0.0.3-next.26) (2026-03-24)
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
### Miscellaneous Chores
|
|
320
|
+
|
|
321
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
### Dependencies
|
|
325
|
+
|
|
326
|
+
* The following workspace dependencies were updated
|
|
327
|
+
* dependencies
|
|
328
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
329
|
+
|
|
330
|
+
## [0.0.3-next.25](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.24...nameof-vitest-plugin-v0.0.3-next.25) (2026-03-23)
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
### Miscellaneous Chores
|
|
334
|
+
|
|
335
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
### Dependencies
|
|
339
|
+
|
|
340
|
+
* The following workspace dependencies were updated
|
|
341
|
+
* dependencies
|
|
342
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
343
|
+
|
|
344
|
+
## [0.0.3-next.24](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.23...nameof-vitest-plugin-v0.0.3-next.24) (2026-03-19)
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
### Bug Fixes
|
|
348
|
+
|
|
349
|
+
* ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
### Dependencies
|
|
353
|
+
|
|
354
|
+
* The following workspace dependencies were updated
|
|
355
|
+
* dependencies
|
|
356
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
357
|
+
|
|
358
|
+
## [0.0.3-next.23](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.22...nameof-vitest-plugin-v0.0.3-next.23) (2026-03-17)
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
### Miscellaneous Chores
|
|
362
|
+
|
|
363
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Dependencies
|
|
367
|
+
|
|
368
|
+
* The following workspace dependencies were updated
|
|
369
|
+
* dependencies
|
|
370
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
371
|
+
|
|
372
|
+
## [0.0.3-next.22](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.21...nameof-vitest-plugin-v0.0.3-next.22) (2026-02-26)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
### Miscellaneous Chores
|
|
376
|
+
|
|
377
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
### Dependencies
|
|
381
|
+
|
|
382
|
+
* The following workspace dependencies were updated
|
|
383
|
+
* dependencies
|
|
384
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
385
|
+
|
|
386
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.20...nameof-vitest-plugin-v0.0.3-next.21) (2026-02-26)
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
### Features
|
|
390
|
+
|
|
391
|
+
* add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
392
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
393
|
+
* locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
394
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
395
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
396
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
### Bug Fixes
|
|
400
|
+
|
|
401
|
+
* repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
### Dependencies
|
|
405
|
+
|
|
406
|
+
* The following workspace dependencies were updated
|
|
407
|
+
* dependencies
|
|
408
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
409
|
+
|
|
410
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.19...nameof-vitest-plugin-v0.0.3-next.20) (2026-02-26)
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
### Miscellaneous Chores
|
|
414
|
+
|
|
415
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
### Dependencies
|
|
419
|
+
|
|
420
|
+
* The following workspace dependencies were updated
|
|
421
|
+
* dependencies
|
|
422
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
423
|
+
|
|
424
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.18...nameof-vitest-plugin-v0.0.3-next.19) (2026-02-26)
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
### Miscellaneous Chores
|
|
428
|
+
|
|
429
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
### Dependencies
|
|
433
|
+
|
|
434
|
+
* The following workspace dependencies were updated
|
|
435
|
+
* dependencies
|
|
436
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
437
|
+
|
|
438
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.17...nameof-vitest-plugin-v0.0.3-next.18) (2026-02-23)
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
### Miscellaneous Chores
|
|
442
|
+
|
|
443
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
### Dependencies
|
|
447
|
+
|
|
448
|
+
* The following workspace dependencies were updated
|
|
449
|
+
* dependencies
|
|
450
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
451
|
+
|
|
452
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.16...nameof-vitest-plugin-v0.0.3-next.17) (2026-02-09)
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
### Miscellaneous Chores
|
|
456
|
+
|
|
457
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
### Dependencies
|
|
461
|
+
|
|
462
|
+
* The following workspace dependencies were updated
|
|
463
|
+
* dependencies
|
|
464
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
465
|
+
|
|
466
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.15...nameof-vitest-plugin-v0.0.3-next.16) (2026-02-06)
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
### Miscellaneous Chores
|
|
470
|
+
|
|
471
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
### Dependencies
|
|
475
|
+
|
|
476
|
+
* The following workspace dependencies were updated
|
|
477
|
+
* dependencies
|
|
478
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
479
|
+
|
|
480
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.14...nameof-vitest-plugin-v0.0.3-next.15) (2026-01-29)
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
### Miscellaneous Chores
|
|
484
|
+
|
|
485
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
### Dependencies
|
|
489
|
+
|
|
490
|
+
* The following workspace dependencies were updated
|
|
491
|
+
* dependencies
|
|
492
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
493
|
+
|
|
494
|
+
## [0.0.3-next.14](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.13...nameof-vitest-plugin-v0.0.3-next.14) (2026-01-22)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
### Miscellaneous Chores
|
|
498
|
+
|
|
499
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
### Dependencies
|
|
503
|
+
|
|
504
|
+
* The following workspace dependencies were updated
|
|
505
|
+
* dependencies
|
|
506
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
507
|
+
|
|
508
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.12...nameof-vitest-plugin-v0.0.3-next.13) (2026-01-08)
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
### Miscellaneous Chores
|
|
512
|
+
|
|
513
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
### Dependencies
|
|
517
|
+
|
|
518
|
+
* The following workspace dependencies were updated
|
|
519
|
+
* dependencies
|
|
520
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
521
|
+
|
|
522
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.11...nameof-vitest-plugin-v0.0.3-next.12) (2026-01-08)
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
### Miscellaneous Chores
|
|
526
|
+
|
|
527
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
### Dependencies
|
|
531
|
+
|
|
532
|
+
* The following workspace dependencies were updated
|
|
533
|
+
* dependencies
|
|
534
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
535
|
+
|
|
536
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.10...nameof-vitest-plugin-v0.0.3-next.11) (2026-01-07)
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
### Miscellaneous Chores
|
|
540
|
+
|
|
541
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
### Dependencies
|
|
545
|
+
|
|
546
|
+
* The following workspace dependencies were updated
|
|
547
|
+
* dependencies
|
|
548
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
549
|
+
|
|
550
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.9...nameof-vitest-plugin-v0.0.3-next.10) (2026-01-07)
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
### Miscellaneous Chores
|
|
554
|
+
|
|
555
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
### Dependencies
|
|
559
|
+
|
|
560
|
+
* The following workspace dependencies were updated
|
|
561
|
+
* dependencies
|
|
562
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
563
|
+
|
|
564
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.8...nameof-vitest-plugin-v0.0.3-next.9) (2026-01-05)
|
|
4
565
|
|
|
5
566
|
|
|
6
567
|
### Miscellaneous Chores
|
|
@@ -14,7 +575,7 @@
|
|
|
14
575
|
* dependencies
|
|
15
576
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
16
577
|
|
|
17
|
-
## [0.0.3-next.8](https://github.com/
|
|
578
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.7...nameof-vitest-plugin-v0.0.3-next.8) (2025-11-26)
|
|
18
579
|
|
|
19
580
|
|
|
20
581
|
### Miscellaneous Chores
|
|
@@ -28,22 +589,22 @@
|
|
|
28
589
|
* dependencies
|
|
29
590
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
30
591
|
|
|
31
|
-
## [0.0.3-next.7](https://github.com/
|
|
592
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.6...nameof-vitest-plugin-v0.0.3-next.7) (2025-11-25)
|
|
32
593
|
|
|
33
594
|
|
|
34
595
|
### Features
|
|
35
596
|
|
|
36
|
-
* add context id features ([#206](https://github.com/
|
|
37
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
38
|
-
* locales validation ([#197](https://github.com/
|
|
39
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
40
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
41
|
-
* use cause instead of inner for errors ([1f4acc4](https://github.com/
|
|
597
|
+
* add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
598
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
599
|
+
* locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
600
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
601
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
602
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
42
603
|
|
|
43
604
|
|
|
44
605
|
### Bug Fixes
|
|
45
606
|
|
|
46
|
-
* repo urls in package.json for moved packages ([31ae463](https://github.com/
|
|
607
|
+
* repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
|
|
47
608
|
|
|
48
609
|
|
|
49
610
|
### Dependencies
|
|
@@ -52,7 +613,7 @@
|
|
|
52
613
|
* dependencies
|
|
53
614
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
54
615
|
|
|
55
|
-
## [0.0.3-next.6](https://github.com/
|
|
616
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.5...nameof-vitest-plugin-v0.0.3-next.6) (2025-11-25)
|
|
56
617
|
|
|
57
618
|
|
|
58
619
|
### Miscellaneous Chores
|
|
@@ -66,7 +627,7 @@
|
|
|
66
627
|
* dependencies
|
|
67
628
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
68
629
|
|
|
69
|
-
## [0.0.3-next.5](https://github.com/
|
|
630
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.4...nameof-vitest-plugin-v0.0.3-next.5) (2025-11-20)
|
|
70
631
|
|
|
71
632
|
|
|
72
633
|
### Miscellaneous Chores
|
|
@@ -80,7 +641,7 @@
|
|
|
80
641
|
* dependencies
|
|
81
642
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
82
643
|
|
|
83
|
-
## [0.0.3-next.4](https://github.com/
|
|
644
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.3...nameof-vitest-plugin-v0.0.3-next.4) (2025-11-13)
|
|
84
645
|
|
|
85
646
|
|
|
86
647
|
### Miscellaneous Chores
|
|
@@ -94,7 +655,7 @@
|
|
|
94
655
|
* dependencies
|
|
95
656
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
96
657
|
|
|
97
|
-
## [0.0.3-next.3](https://github.com/
|
|
658
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.2...nameof-vitest-plugin-v0.0.3-next.3) (2025-11-12)
|
|
98
659
|
|
|
99
660
|
|
|
100
661
|
### Miscellaneous Chores
|
|
@@ -108,7 +669,7 @@
|
|
|
108
669
|
* dependencies
|
|
109
670
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
110
671
|
|
|
111
|
-
## [0.0.3-next.2](https://github.com/
|
|
672
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.1...nameof-vitest-plugin-v0.0.3-next.2) (2025-11-12)
|
|
112
673
|
|
|
113
674
|
|
|
114
675
|
### Miscellaneous Chores
|
|
@@ -122,22 +683,22 @@
|
|
|
122
683
|
* dependencies
|
|
123
684
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
124
685
|
|
|
125
|
-
## [0.0.3-next.1](https://github.com/
|
|
686
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.3-next.0...nameof-vitest-plugin-v0.0.3-next.1) (2025-11-10)
|
|
126
687
|
|
|
127
688
|
|
|
128
689
|
### Features
|
|
129
690
|
|
|
130
|
-
* add context id features ([#206](https://github.com/
|
|
131
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
132
|
-
* locales validation ([#197](https://github.com/
|
|
133
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
134
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
135
|
-
* use cause instead of inner for errors ([1f4acc4](https://github.com/
|
|
691
|
+
* add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
692
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
693
|
+
* locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
694
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
695
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
696
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
136
697
|
|
|
137
698
|
|
|
138
699
|
### Bug Fixes
|
|
139
700
|
|
|
140
|
-
* repo urls in package.json for moved packages ([31ae463](https://github.com/
|
|
701
|
+
* repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
|
|
141
702
|
|
|
142
703
|
|
|
143
704
|
### Dependencies
|
|
@@ -146,7 +707,7 @@
|
|
|
146
707
|
* dependencies
|
|
147
708
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
148
709
|
|
|
149
|
-
## [0.0.2-next.22](https://github.com/
|
|
710
|
+
## [0.0.2-next.22](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.21...nameof-vitest-plugin-v0.0.2-next.22) (2025-10-10)
|
|
150
711
|
|
|
151
712
|
|
|
152
713
|
### Miscellaneous Chores
|
|
@@ -160,12 +721,12 @@
|
|
|
160
721
|
* dependencies
|
|
161
722
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.21 to 0.0.2-next.22
|
|
162
723
|
|
|
163
|
-
## [0.0.2-next.21](https://github.com/
|
|
724
|
+
## [0.0.2-next.21](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.20...nameof-vitest-plugin-v0.0.2-next.21) (2025-10-09)
|
|
164
725
|
|
|
165
726
|
|
|
166
727
|
### Features
|
|
167
728
|
|
|
168
|
-
* locales validation ([#197](https://github.com/
|
|
729
|
+
* locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
169
730
|
|
|
170
731
|
|
|
171
732
|
### Dependencies
|
|
@@ -174,7 +735,7 @@
|
|
|
174
735
|
* dependencies
|
|
175
736
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.20 to 0.0.2-next.21
|
|
176
737
|
|
|
177
|
-
## [0.0.2-next.20](https://github.com/
|
|
738
|
+
## [0.0.2-next.20](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.19...nameof-vitest-plugin-v0.0.2-next.20) (2025-10-02)
|
|
178
739
|
|
|
179
740
|
|
|
180
741
|
### Miscellaneous Chores
|
|
@@ -188,7 +749,7 @@
|
|
|
188
749
|
* dependencies
|
|
189
750
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
|
|
190
751
|
|
|
191
|
-
## [0.0.2-next.19](https://github.com/
|
|
752
|
+
## [0.0.2-next.19](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.18...nameof-vitest-plugin-v0.0.2-next.19) (2025-09-30)
|
|
192
753
|
|
|
193
754
|
|
|
194
755
|
### Miscellaneous Chores
|
|
@@ -202,7 +763,7 @@
|
|
|
202
763
|
* dependencies
|
|
203
764
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
|
|
204
765
|
|
|
205
|
-
## [0.0.2-next.18](https://github.com/
|
|
766
|
+
## [0.0.2-next.18](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.17...nameof-vitest-plugin-v0.0.2-next.18) (2025-09-29)
|
|
206
767
|
|
|
207
768
|
|
|
208
769
|
### Miscellaneous Chores
|
|
@@ -216,7 +777,7 @@
|
|
|
216
777
|
* dependencies
|
|
217
778
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
|
|
218
779
|
|
|
219
|
-
## [0.0.2-next.17](https://github.com/
|
|
780
|
+
## [0.0.2-next.17](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.16...nameof-vitest-plugin-v0.0.2-next.17) (2025-09-29)
|
|
220
781
|
|
|
221
782
|
|
|
222
783
|
### Miscellaneous Chores
|
|
@@ -230,7 +791,7 @@
|
|
|
230
791
|
* dependencies
|
|
231
792
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
232
793
|
|
|
233
|
-
## [0.0.2-next.16](https://github.com/
|
|
794
|
+
## [0.0.2-next.16](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.15...nameof-vitest-plugin-v0.0.2-next.16) (2025-09-28)
|
|
234
795
|
|
|
235
796
|
|
|
236
797
|
### Miscellaneous Chores
|
|
@@ -244,7 +805,7 @@
|
|
|
244
805
|
* dependencies
|
|
245
806
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
246
807
|
|
|
247
|
-
## [0.0.2-next.15](https://github.com/
|
|
808
|
+
## [0.0.2-next.15](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.14...nameof-vitest-plugin-v0.0.2-next.15) (2025-09-22)
|
|
248
809
|
|
|
249
810
|
|
|
250
811
|
### Miscellaneous Chores
|
|
@@ -258,7 +819,7 @@
|
|
|
258
819
|
* dependencies
|
|
259
820
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
|
|
260
821
|
|
|
261
|
-
## [0.0.2-next.14](https://github.com/
|
|
822
|
+
## [0.0.2-next.14](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.13...nameof-vitest-plugin-v0.0.2-next.14) (2025-09-22)
|
|
262
823
|
|
|
263
824
|
|
|
264
825
|
### Miscellaneous Chores
|
|
@@ -272,7 +833,7 @@
|
|
|
272
833
|
* dependencies
|
|
273
834
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
|
|
274
835
|
|
|
275
|
-
## [0.0.2-next.13](https://github.com/
|
|
836
|
+
## [0.0.2-next.13](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.12...nameof-vitest-plugin-v0.0.2-next.13) (2025-09-22)
|
|
276
837
|
|
|
277
838
|
|
|
278
839
|
### Miscellaneous Chores
|
|
@@ -286,7 +847,7 @@
|
|
|
286
847
|
* dependencies
|
|
287
848
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
288
849
|
|
|
289
|
-
## [0.0.2-next.12](https://github.com/
|
|
850
|
+
## [0.0.2-next.12](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.11...nameof-vitest-plugin-v0.0.2-next.12) (2025-09-15)
|
|
290
851
|
|
|
291
852
|
|
|
292
853
|
### Miscellaneous Chores
|
|
@@ -300,7 +861,7 @@
|
|
|
300
861
|
* dependencies
|
|
301
862
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
302
863
|
|
|
303
|
-
## [0.0.2-next.11](https://github.com/
|
|
864
|
+
## [0.0.2-next.11](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.10...nameof-vitest-plugin-v0.0.2-next.11) (2025-09-15)
|
|
304
865
|
|
|
305
866
|
|
|
306
867
|
### Miscellaneous Chores
|
|
@@ -314,7 +875,7 @@
|
|
|
314
875
|
* dependencies
|
|
315
876
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
316
877
|
|
|
317
|
-
## [0.0.2-next.10](https://github.com/
|
|
878
|
+
## [0.0.2-next.10](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.9...nameof-vitest-plugin-v0.0.2-next.10) (2025-09-11)
|
|
318
879
|
|
|
319
880
|
|
|
320
881
|
### Miscellaneous Chores
|
|
@@ -328,7 +889,7 @@
|
|
|
328
889
|
* dependencies
|
|
329
890
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
330
891
|
|
|
331
|
-
## [0.0.2-next.9](https://github.com/
|
|
892
|
+
## [0.0.2-next.9](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.8...nameof-vitest-plugin-v0.0.2-next.9) (2025-09-08)
|
|
332
893
|
|
|
333
894
|
|
|
334
895
|
### Miscellaneous Chores
|
|
@@ -342,7 +903,7 @@
|
|
|
342
903
|
* dependencies
|
|
343
904
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
344
905
|
|
|
345
|
-
## [0.0.2-next.8](https://github.com/
|
|
906
|
+
## [0.0.2-next.8](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.7...nameof-vitest-plugin-v0.0.2-next.8) (2025-09-05)
|
|
346
907
|
|
|
347
908
|
|
|
348
909
|
### Miscellaneous Chores
|
|
@@ -356,12 +917,12 @@
|
|
|
356
917
|
* dependencies
|
|
357
918
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
358
919
|
|
|
359
|
-
## [0.0.2-next.7](https://github.com/
|
|
920
|
+
## [0.0.2-next.7](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.6...nameof-vitest-plugin-v0.0.2-next.7) (2025-08-29)
|
|
360
921
|
|
|
361
922
|
|
|
362
923
|
### Features
|
|
363
924
|
|
|
364
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
925
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
365
926
|
|
|
366
927
|
|
|
367
928
|
### Dependencies
|
|
@@ -370,7 +931,7 @@
|
|
|
370
931
|
* dependencies
|
|
371
932
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
372
933
|
|
|
373
|
-
## [0.0.2-next.6](https://github.com/
|
|
934
|
+
## [0.0.2-next.6](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.5...nameof-vitest-plugin-v0.0.2-next.6) (2025-08-27)
|
|
374
935
|
|
|
375
936
|
|
|
376
937
|
### Miscellaneous Chores
|
|
@@ -384,12 +945,12 @@
|
|
|
384
945
|
* dependencies
|
|
385
946
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
386
947
|
|
|
387
|
-
## [0.0.2-next.5](https://github.com/
|
|
948
|
+
## [0.0.2-next.5](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.4...nameof-vitest-plugin-v0.0.2-next.5) (2025-08-19)
|
|
388
949
|
|
|
389
950
|
|
|
390
951
|
### Features
|
|
391
952
|
|
|
392
|
-
* use cause instead of inner for errors ([1f4acc4](https://github.com/
|
|
953
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
393
954
|
|
|
394
955
|
|
|
395
956
|
### Dependencies
|
|
@@ -398,7 +959,7 @@
|
|
|
398
959
|
* dependencies
|
|
399
960
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
400
961
|
|
|
401
|
-
## [0.0.2-next.4](https://github.com/
|
|
962
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.3...nameof-vitest-plugin-v0.0.2-next.4) (2025-08-15)
|
|
402
963
|
|
|
403
964
|
|
|
404
965
|
### Miscellaneous Chores
|
|
@@ -412,18 +973,18 @@
|
|
|
412
973
|
* dependencies
|
|
413
974
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
414
975
|
|
|
415
|
-
## [0.0.2-next.3](https://github.com/
|
|
976
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.2...nameof-vitest-plugin-v0.0.2-next.3) (2025-08-06)
|
|
416
977
|
|
|
417
978
|
|
|
418
979
|
### Features
|
|
419
980
|
|
|
420
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
421
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
981
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
982
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
422
983
|
|
|
423
984
|
|
|
424
985
|
### Bug Fixes
|
|
425
986
|
|
|
426
|
-
* repo urls in package.json for moved packages ([31ae463](https://github.com/
|
|
987
|
+
* repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
|
|
427
988
|
|
|
428
989
|
|
|
429
990
|
### Dependencies
|
|
@@ -432,18 +993,18 @@
|
|
|
432
993
|
* dependencies
|
|
433
994
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
434
995
|
|
|
435
|
-
## [0.0.2-next.2](https://github.com/
|
|
996
|
+
## [0.0.2-next.2](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.1...nameof-vitest-plugin-v0.0.2-next.2) (2025-08-06)
|
|
436
997
|
|
|
437
998
|
|
|
438
999
|
### Features
|
|
439
1000
|
|
|
440
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
441
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
1001
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
1002
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
442
1003
|
|
|
443
1004
|
|
|
444
1005
|
### Bug Fixes
|
|
445
1006
|
|
|
446
|
-
* repo urls in package.json for moved packages ([31ae463](https://github.com/
|
|
1007
|
+
* repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
|
|
447
1008
|
|
|
448
1009
|
|
|
449
1010
|
### Dependencies
|
|
@@ -452,18 +1013,18 @@
|
|
|
452
1013
|
* dependencies
|
|
453
1014
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
454
1015
|
|
|
455
|
-
## [0.0.2-next.1](https://github.com/
|
|
1016
|
+
## [0.0.2-next.1](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.2-next.0...nameof-vitest-plugin-v0.0.2-next.1) (2025-08-06)
|
|
456
1017
|
|
|
457
1018
|
|
|
458
1019
|
### Features
|
|
459
1020
|
|
|
460
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
461
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
1021
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
1022
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
462
1023
|
|
|
463
1024
|
|
|
464
1025
|
### Bug Fixes
|
|
465
1026
|
|
|
466
|
-
* repo urls in package.json for moved packages ([31ae463](https://github.com/
|
|
1027
|
+
* repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
|
|
467
1028
|
|
|
468
1029
|
|
|
469
1030
|
### Dependencies
|
|
@@ -477,8 +1038,8 @@
|
|
|
477
1038
|
|
|
478
1039
|
### Features
|
|
479
1040
|
|
|
480
|
-
* release to production ([829d53d](https://github.com/
|
|
481
|
-
* release to production ([5cf3a76](https://github.com/
|
|
1041
|
+
* release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
|
|
1042
|
+
* release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
|
|
482
1043
|
|
|
483
1044
|
|
|
484
1045
|
### Dependencies
|
|
@@ -487,17 +1048,17 @@
|
|
|
487
1048
|
* dependencies
|
|
488
1049
|
* @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
|
|
489
1050
|
|
|
490
|
-
## [0.0.1-next.70](https://github.com/
|
|
1051
|
+
## [0.0.1-next.70](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.1-next.69...nameof-vitest-plugin-v0.0.1-next.70) (2025-07-02)
|
|
491
1052
|
|
|
492
1053
|
|
|
493
1054
|
### Features
|
|
494
1055
|
|
|
495
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1056
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
496
1057
|
|
|
497
1058
|
|
|
498
1059
|
### Bug Fixes
|
|
499
1060
|
|
|
500
|
-
* repo urls in package.json for moved packages ([31ae463](https://github.com/
|
|
1061
|
+
* repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
|
|
501
1062
|
|
|
502
1063
|
|
|
503
1064
|
### Dependencies
|
|
@@ -506,17 +1067,17 @@
|
|
|
506
1067
|
* dependencies
|
|
507
1068
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
508
1069
|
|
|
509
|
-
## [0.0.1-next.69](https://github.com/
|
|
1070
|
+
## [0.0.1-next.69](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.1-next.68...nameof-vitest-plugin-v0.0.1-next.69) (2025-07-02)
|
|
510
1071
|
|
|
511
1072
|
|
|
512
1073
|
### Features
|
|
513
1074
|
|
|
514
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1075
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
515
1076
|
|
|
516
1077
|
|
|
517
1078
|
### Bug Fixes
|
|
518
1079
|
|
|
519
|
-
* repo urls in package.json for moved packages ([31ae463](https://github.com/
|
|
1080
|
+
* repo urls in package.json for moved packages ([31ae463](https://github.com/iotaledger/twin-framework/commit/31ae463095dfa8c0e48bb5bb12316f1e8abb9a4c))
|
|
520
1081
|
|
|
521
1082
|
|
|
522
1083
|
### Dependencies
|
|
@@ -525,12 +1086,12 @@
|
|
|
525
1086
|
* dependencies
|
|
526
1087
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
527
1088
|
|
|
528
|
-
## [0.0.1-next.68](https://github.com/
|
|
1089
|
+
## [0.0.1-next.68](https://github.com/iotaledger/twin-framework/compare/nameof-vitest-plugin-v0.0.1-next.67...nameof-vitest-plugin-v0.0.1-next.68) (2025-07-02)
|
|
529
1090
|
|
|
530
1091
|
|
|
531
1092
|
### Features
|
|
532
1093
|
|
|
533
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1094
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
534
1095
|
|
|
535
1096
|
|
|
536
1097
|
### Dependencies
|
|
@@ -539,7 +1100,7 @@
|
|
|
539
1100
|
* dependencies
|
|
540
1101
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
541
1102
|
|
|
542
|
-
## [0.0.1-next.28](https://github.com/
|
|
1103
|
+
## [0.0.1-next.28](https://github.com/iotaledger/twin-tools/compare/nameof-vitest-plugin-v0.0.1-next.27...nameof-vitest-plugin-v0.0.1-next.28) (2025-06-18)
|
|
543
1104
|
|
|
544
1105
|
|
|
545
1106
|
### Miscellaneous Chores
|
|
@@ -553,7 +1114,7 @@
|
|
|
553
1114
|
* dependencies
|
|
554
1115
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.27 to 0.0.1-next.28
|
|
555
1116
|
|
|
556
|
-
## [0.0.1-next.27](https://github.com/
|
|
1117
|
+
## [0.0.1-next.27](https://github.com/iotaledger/twin-tools/compare/nameof-vitest-plugin-v0.0.1-next.26...nameof-vitest-plugin-v0.0.1-next.27) (2025-06-17)
|
|
557
1118
|
|
|
558
1119
|
|
|
559
1120
|
### Miscellaneous Chores
|
|
@@ -567,7 +1128,7 @@
|
|
|
567
1128
|
* dependencies
|
|
568
1129
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.26 to 0.0.1-next.27
|
|
569
1130
|
|
|
570
|
-
## [0.0.1-next.26](https://github.com/
|
|
1131
|
+
## [0.0.1-next.26](https://github.com/iotaledger/twin-tools/compare/nameof-vitest-plugin-v0.0.1-next.25...nameof-vitest-plugin-v0.0.1-next.26) (2025-06-11)
|
|
571
1132
|
|
|
572
1133
|
|
|
573
1134
|
### Miscellaneous Chores
|
|
@@ -581,12 +1142,12 @@
|
|
|
581
1142
|
* dependencies
|
|
582
1143
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.25 to 0.0.1-next.26
|
|
583
1144
|
|
|
584
|
-
## [0.0.1-next.25](https://github.com/
|
|
1145
|
+
## [0.0.1-next.25](https://github.com/iotaledger/twin-tools/compare/nameof-vitest-plugin-v0.0.1-next.24...nameof-vitest-plugin-v0.0.1-next.25) (2025-06-10)
|
|
585
1146
|
|
|
586
1147
|
|
|
587
1148
|
### Features
|
|
588
1149
|
|
|
589
|
-
* add ts-to-schema overrides ([3c54504](https://github.com/
|
|
1150
|
+
* add ts-to-schema overrides ([3c54504](https://github.com/iotaledger/twin-tools/commit/3c5450468eb998204a75576b7791a7ca4027da62))
|
|
590
1151
|
|
|
591
1152
|
|
|
592
1153
|
### Dependencies
|
|
@@ -595,7 +1156,7 @@
|
|
|
595
1156
|
* dependencies
|
|
596
1157
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.24 to 0.0.1-next.25
|
|
597
1158
|
|
|
598
|
-
## [0.0.1-next.24](https://github.com/
|
|
1159
|
+
## [0.0.1-next.24](https://github.com/iotaledger/twin-tools/compare/nameof-vitest-plugin-v0.0.1-next.23...nameof-vitest-plugin-v0.0.1-next.24) (2025-06-05)
|
|
599
1160
|
|
|
600
1161
|
|
|
601
1162
|
### Miscellaneous Chores
|
|
@@ -609,7 +1170,7 @@
|
|
|
609
1170
|
* dependencies
|
|
610
1171
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.23 to 0.0.1-next.24
|
|
611
1172
|
|
|
612
|
-
## [0.0.1-next.23](https://github.com/
|
|
1173
|
+
## [0.0.1-next.23](https://github.com/iotaledger/twin-tools/compare/nameof-vitest-plugin-v0.0.1-next.22...nameof-vitest-plugin-v0.0.1-next.23) (2025-06-03)
|
|
613
1174
|
|
|
614
1175
|
|
|
615
1176
|
### Miscellaneous Chores
|
|
@@ -623,7 +1184,7 @@
|
|
|
623
1184
|
* dependencies
|
|
624
1185
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.22 to 0.0.1-next.23
|
|
625
1186
|
|
|
626
|
-
## [0.0.1-next.22](https://github.com/
|
|
1187
|
+
## [0.0.1-next.22](https://github.com/iotaledger/twin-tools/compare/nameof-vitest-plugin-v0.0.1-next.21...nameof-vitest-plugin-v0.0.1-next.22) (2025-06-03)
|
|
627
1188
|
|
|
628
1189
|
|
|
629
1190
|
### Miscellaneous Chores
|
|
@@ -637,12 +1198,12 @@
|
|
|
637
1198
|
* dependencies
|
|
638
1199
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.21 to 0.0.1-next.22
|
|
639
1200
|
|
|
640
|
-
## [0.0.1-next.21](https://github.com/
|
|
1201
|
+
## [0.0.1-next.21](https://github.com/iotaledger/twin-tools/compare/nameof-vitest-plugin-v0.0.1-next.20...nameof-vitest-plugin-v0.0.1-next.21) (2025-04-17)
|
|
641
1202
|
|
|
642
1203
|
|
|
643
1204
|
### Features
|
|
644
1205
|
|
|
645
|
-
* use shared store mechanism ([#31](https://github.com/
|
|
1206
|
+
* use shared store mechanism ([#31](https://github.com/iotaledger/twin-tools/issues/31)) ([d9fe68b](https://github.com/iotaledger/twin-tools/commit/d9fe68b903d1268c7cb3c64772df5cb78fd63667))
|
|
646
1207
|
|
|
647
1208
|
|
|
648
1209
|
### Dependencies
|
|
@@ -651,7 +1212,7 @@
|
|
|
651
1212
|
* dependencies
|
|
652
1213
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.20 to 0.0.1-next.21
|
|
653
1214
|
|
|
654
|
-
## [0.0.1-next.20](https://github.com/
|
|
1215
|
+
## [0.0.1-next.20](https://github.com/iotaledger/twin-tools/compare/nameof-vitest-plugin-v0.0.1-next.19...nameof-vitest-plugin-v0.0.1-next.20) (2025-03-28)
|
|
655
1216
|
|
|
656
1217
|
|
|
657
1218
|
### Miscellaneous Chores
|
|
@@ -665,7 +1226,7 @@
|
|
|
665
1226
|
* dependencies
|
|
666
1227
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.19 to 0.0.1-next.20
|
|
667
1228
|
|
|
668
|
-
## [0.0.1-next.19](https://github.com/
|
|
1229
|
+
## [0.0.1-next.19](https://github.com/iotaledger/twin-tools/compare/nameof-vitest-plugin-v0.0.1-next.18...nameof-vitest-plugin-v0.0.1-next.19) (2025-03-26)
|
|
669
1230
|
|
|
670
1231
|
|
|
671
1232
|
### Miscellaneous Chores
|
package/docs/configuration.md
CHANGED
package/docs/examples.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Nameof Vitest Plugin Examples
|
|
2
|
+
|
|
3
|
+
Use these snippets to enable compile-time name replacement during test execution so typed name helpers add no runtime overhead.
|
|
4
|
+
|
|
5
|
+
## nameOfPluginTransform
|
|
6
|
+
|
|
7
|
+
```typescript
|
|
8
|
+
import { nameOfPluginTransform } from '@twin.org/nameof-vitest-plugin';
|
|
9
|
+
|
|
10
|
+
const source = `
|
|
11
|
+
import { nameof } from '@twin.org/nameof';
|
|
12
|
+
class UserSession {}
|
|
13
|
+
const className = nameof<UserSession>();
|
|
14
|
+
`;
|
|
15
|
+
|
|
16
|
+
const transformed = nameOfPluginTransform(source, 'session.spec.ts');
|
|
17
|
+
|
|
18
|
+
transformed.includes("'UserSession'"); // true
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## NameOfPlugin
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import { defineConfig } from 'vitest/config';
|
|
25
|
+
import { NameOfPlugin } from '@twin.org/nameof-vitest-plugin';
|
|
26
|
+
|
|
27
|
+
export default defineConfig({
|
|
28
|
+
plugins: [NameOfPlugin],
|
|
29
|
+
test: {
|
|
30
|
+
include: ['tests/**/*.spec.ts']
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
```
|
|
@@ -2,16 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
> **nameOfPluginTransform**(`code`, `id`): `string`
|
|
4
4
|
|
|
5
|
+
Transforms the code using the nameOf plugin.
|
|
6
|
+
|
|
5
7
|
## Parameters
|
|
6
8
|
|
|
7
9
|
### code
|
|
8
10
|
|
|
9
11
|
`string`
|
|
10
12
|
|
|
13
|
+
The code to transform.
|
|
14
|
+
|
|
11
15
|
### id
|
|
12
16
|
|
|
13
17
|
`string`
|
|
14
18
|
|
|
19
|
+
The id of the file being transformed.
|
|
20
|
+
|
|
15
21
|
## Returns
|
|
16
22
|
|
|
17
23
|
`string`
|
|
24
|
+
|
|
25
|
+
The transformed code.
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/nameof-vitest-plugin",
|
|
3
|
-
"version": "0.0.3
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "Vitest plugin which perform the nameof transformation",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/
|
|
7
|
+
"url": "git+https://github.com/iotaledger/framework.git",
|
|
8
8
|
"directory": "packages/nameof-vitest-plugin"
|
|
9
9
|
},
|
|
10
10
|
"author": "martyn.janes@iota.org",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/nameof-transformer": "0.0.3
|
|
17
|
+
"@twin.org/nameof-transformer": "^0.0.3"
|
|
18
18
|
},
|
|
19
19
|
"main": "./dist/es/index.js",
|
|
20
20
|
"exports": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"blockchain"
|
|
39
39
|
],
|
|
40
40
|
"bugs": {
|
|
41
|
-
"url": "git+https://github.com/
|
|
41
|
+
"url": "git+https://github.com/iotaledger/framework/issues"
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://twindev.org"
|
|
44
44
|
}
|