@twin.org/nameof-vitest-plugin 0.0.3-next.8 → 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 +654 -79
- 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,581 @@
|
|
|
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)
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
### Miscellaneous Chores
|
|
568
|
+
|
|
569
|
+
* **nameof-vitest-plugin:** Synchronize repo versions
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
### Dependencies
|
|
573
|
+
|
|
574
|
+
* The following workspace dependencies were updated
|
|
575
|
+
* dependencies
|
|
576
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
577
|
+
|
|
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)
|
|
4
579
|
|
|
5
580
|
|
|
6
581
|
### Miscellaneous Chores
|
|
@@ -14,22 +589,22 @@
|
|
|
14
589
|
* dependencies
|
|
15
590
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
16
591
|
|
|
17
|
-
## [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)
|
|
18
593
|
|
|
19
594
|
|
|
20
595
|
### Features
|
|
21
596
|
|
|
22
|
-
* add context id features ([#206](https://github.com/
|
|
23
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
24
|
-
* locales validation ([#197](https://github.com/
|
|
25
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
26
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
27
|
-
* 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))
|
|
28
603
|
|
|
29
604
|
|
|
30
605
|
### Bug Fixes
|
|
31
606
|
|
|
32
|
-
* 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))
|
|
33
608
|
|
|
34
609
|
|
|
35
610
|
### Dependencies
|
|
@@ -38,7 +613,7 @@
|
|
|
38
613
|
* dependencies
|
|
39
614
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
40
615
|
|
|
41
|
-
## [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)
|
|
42
617
|
|
|
43
618
|
|
|
44
619
|
### Miscellaneous Chores
|
|
@@ -52,7 +627,7 @@
|
|
|
52
627
|
* dependencies
|
|
53
628
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
54
629
|
|
|
55
|
-
## [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)
|
|
56
631
|
|
|
57
632
|
|
|
58
633
|
### Miscellaneous Chores
|
|
@@ -66,7 +641,7 @@
|
|
|
66
641
|
* dependencies
|
|
67
642
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
68
643
|
|
|
69
|
-
## [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)
|
|
70
645
|
|
|
71
646
|
|
|
72
647
|
### Miscellaneous Chores
|
|
@@ -80,7 +655,7 @@
|
|
|
80
655
|
* dependencies
|
|
81
656
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
82
657
|
|
|
83
|
-
## [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)
|
|
84
659
|
|
|
85
660
|
|
|
86
661
|
### Miscellaneous Chores
|
|
@@ -94,7 +669,7 @@
|
|
|
94
669
|
* dependencies
|
|
95
670
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
96
671
|
|
|
97
|
-
## [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)
|
|
98
673
|
|
|
99
674
|
|
|
100
675
|
### Miscellaneous Chores
|
|
@@ -108,22 +683,22 @@
|
|
|
108
683
|
* dependencies
|
|
109
684
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
110
685
|
|
|
111
|
-
## [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)
|
|
112
687
|
|
|
113
688
|
|
|
114
689
|
### Features
|
|
115
690
|
|
|
116
|
-
* add context id features ([#206](https://github.com/
|
|
117
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
118
|
-
* locales validation ([#197](https://github.com/
|
|
119
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
120
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
121
|
-
* 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))
|
|
122
697
|
|
|
123
698
|
|
|
124
699
|
### Bug Fixes
|
|
125
700
|
|
|
126
|
-
* 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))
|
|
127
702
|
|
|
128
703
|
|
|
129
704
|
### Dependencies
|
|
@@ -132,7 +707,7 @@
|
|
|
132
707
|
* dependencies
|
|
133
708
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
134
709
|
|
|
135
|
-
## [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)
|
|
136
711
|
|
|
137
712
|
|
|
138
713
|
### Miscellaneous Chores
|
|
@@ -146,12 +721,12 @@
|
|
|
146
721
|
* dependencies
|
|
147
722
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.21 to 0.0.2-next.22
|
|
148
723
|
|
|
149
|
-
## [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)
|
|
150
725
|
|
|
151
726
|
|
|
152
727
|
### Features
|
|
153
728
|
|
|
154
|
-
* 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))
|
|
155
730
|
|
|
156
731
|
|
|
157
732
|
### Dependencies
|
|
@@ -160,7 +735,7 @@
|
|
|
160
735
|
* dependencies
|
|
161
736
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.20 to 0.0.2-next.21
|
|
162
737
|
|
|
163
|
-
## [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)
|
|
164
739
|
|
|
165
740
|
|
|
166
741
|
### Miscellaneous Chores
|
|
@@ -174,7 +749,7 @@
|
|
|
174
749
|
* dependencies
|
|
175
750
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
|
|
176
751
|
|
|
177
|
-
## [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)
|
|
178
753
|
|
|
179
754
|
|
|
180
755
|
### Miscellaneous Chores
|
|
@@ -188,7 +763,7 @@
|
|
|
188
763
|
* dependencies
|
|
189
764
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
|
|
190
765
|
|
|
191
|
-
## [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)
|
|
192
767
|
|
|
193
768
|
|
|
194
769
|
### Miscellaneous Chores
|
|
@@ -202,7 +777,7 @@
|
|
|
202
777
|
* dependencies
|
|
203
778
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
|
|
204
779
|
|
|
205
|
-
## [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)
|
|
206
781
|
|
|
207
782
|
|
|
208
783
|
### Miscellaneous Chores
|
|
@@ -216,7 +791,7 @@
|
|
|
216
791
|
* dependencies
|
|
217
792
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
218
793
|
|
|
219
|
-
## [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)
|
|
220
795
|
|
|
221
796
|
|
|
222
797
|
### Miscellaneous Chores
|
|
@@ -230,7 +805,7 @@
|
|
|
230
805
|
* dependencies
|
|
231
806
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
232
807
|
|
|
233
|
-
## [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)
|
|
234
809
|
|
|
235
810
|
|
|
236
811
|
### Miscellaneous Chores
|
|
@@ -244,7 +819,7 @@
|
|
|
244
819
|
* dependencies
|
|
245
820
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
|
|
246
821
|
|
|
247
|
-
## [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)
|
|
248
823
|
|
|
249
824
|
|
|
250
825
|
### Miscellaneous Chores
|
|
@@ -258,7 +833,7 @@
|
|
|
258
833
|
* dependencies
|
|
259
834
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
|
|
260
835
|
|
|
261
|
-
## [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)
|
|
262
837
|
|
|
263
838
|
|
|
264
839
|
### Miscellaneous Chores
|
|
@@ -272,7 +847,7 @@
|
|
|
272
847
|
* dependencies
|
|
273
848
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
274
849
|
|
|
275
|
-
## [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)
|
|
276
851
|
|
|
277
852
|
|
|
278
853
|
### Miscellaneous Chores
|
|
@@ -286,7 +861,7 @@
|
|
|
286
861
|
* dependencies
|
|
287
862
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
288
863
|
|
|
289
|
-
## [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)
|
|
290
865
|
|
|
291
866
|
|
|
292
867
|
### Miscellaneous Chores
|
|
@@ -300,7 +875,7 @@
|
|
|
300
875
|
* dependencies
|
|
301
876
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
302
877
|
|
|
303
|
-
## [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)
|
|
304
879
|
|
|
305
880
|
|
|
306
881
|
### Miscellaneous Chores
|
|
@@ -314,7 +889,7 @@
|
|
|
314
889
|
* dependencies
|
|
315
890
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
316
891
|
|
|
317
|
-
## [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)
|
|
318
893
|
|
|
319
894
|
|
|
320
895
|
### Miscellaneous Chores
|
|
@@ -328,7 +903,7 @@
|
|
|
328
903
|
* dependencies
|
|
329
904
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
330
905
|
|
|
331
|
-
## [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)
|
|
332
907
|
|
|
333
908
|
|
|
334
909
|
### Miscellaneous Chores
|
|
@@ -342,12 +917,12 @@
|
|
|
342
917
|
* dependencies
|
|
343
918
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
344
919
|
|
|
345
|
-
## [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)
|
|
346
921
|
|
|
347
922
|
|
|
348
923
|
### Features
|
|
349
924
|
|
|
350
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
925
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
351
926
|
|
|
352
927
|
|
|
353
928
|
### Dependencies
|
|
@@ -356,7 +931,7 @@
|
|
|
356
931
|
* dependencies
|
|
357
932
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
358
933
|
|
|
359
|
-
## [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)
|
|
360
935
|
|
|
361
936
|
|
|
362
937
|
### Miscellaneous Chores
|
|
@@ -370,12 +945,12 @@
|
|
|
370
945
|
* dependencies
|
|
371
946
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
372
947
|
|
|
373
|
-
## [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)
|
|
374
949
|
|
|
375
950
|
|
|
376
951
|
### Features
|
|
377
952
|
|
|
378
|
-
* 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))
|
|
379
954
|
|
|
380
955
|
|
|
381
956
|
### Dependencies
|
|
@@ -384,7 +959,7 @@
|
|
|
384
959
|
* dependencies
|
|
385
960
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
386
961
|
|
|
387
|
-
## [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)
|
|
388
963
|
|
|
389
964
|
|
|
390
965
|
### Miscellaneous Chores
|
|
@@ -398,18 +973,18 @@
|
|
|
398
973
|
* dependencies
|
|
399
974
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
400
975
|
|
|
401
|
-
## [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)
|
|
402
977
|
|
|
403
978
|
|
|
404
979
|
### Features
|
|
405
980
|
|
|
406
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
407
|
-
* 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))
|
|
408
983
|
|
|
409
984
|
|
|
410
985
|
### Bug Fixes
|
|
411
986
|
|
|
412
|
-
* 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))
|
|
413
988
|
|
|
414
989
|
|
|
415
990
|
### Dependencies
|
|
@@ -418,18 +993,18 @@
|
|
|
418
993
|
* dependencies
|
|
419
994
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
420
995
|
|
|
421
|
-
## [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)
|
|
422
997
|
|
|
423
998
|
|
|
424
999
|
### Features
|
|
425
1000
|
|
|
426
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
427
|
-
* 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))
|
|
428
1003
|
|
|
429
1004
|
|
|
430
1005
|
### Bug Fixes
|
|
431
1006
|
|
|
432
|
-
* 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))
|
|
433
1008
|
|
|
434
1009
|
|
|
435
1010
|
### Dependencies
|
|
@@ -438,18 +1013,18 @@
|
|
|
438
1013
|
* dependencies
|
|
439
1014
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
440
1015
|
|
|
441
|
-
## [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)
|
|
442
1017
|
|
|
443
1018
|
|
|
444
1019
|
### Features
|
|
445
1020
|
|
|
446
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
447
|
-
* 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))
|
|
448
1023
|
|
|
449
1024
|
|
|
450
1025
|
### Bug Fixes
|
|
451
1026
|
|
|
452
|
-
* 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))
|
|
453
1028
|
|
|
454
1029
|
|
|
455
1030
|
### Dependencies
|
|
@@ -463,8 +1038,8 @@
|
|
|
463
1038
|
|
|
464
1039
|
### Features
|
|
465
1040
|
|
|
466
|
-
* release to production ([829d53d](https://github.com/
|
|
467
|
-
* 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))
|
|
468
1043
|
|
|
469
1044
|
|
|
470
1045
|
### Dependencies
|
|
@@ -473,17 +1048,17 @@
|
|
|
473
1048
|
* dependencies
|
|
474
1049
|
* @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
|
|
475
1050
|
|
|
476
|
-
## [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)
|
|
477
1052
|
|
|
478
1053
|
|
|
479
1054
|
### Features
|
|
480
1055
|
|
|
481
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1056
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
482
1057
|
|
|
483
1058
|
|
|
484
1059
|
### Bug Fixes
|
|
485
1060
|
|
|
486
|
-
* 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))
|
|
487
1062
|
|
|
488
1063
|
|
|
489
1064
|
### Dependencies
|
|
@@ -492,17 +1067,17 @@
|
|
|
492
1067
|
* dependencies
|
|
493
1068
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
494
1069
|
|
|
495
|
-
## [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)
|
|
496
1071
|
|
|
497
1072
|
|
|
498
1073
|
### Features
|
|
499
1074
|
|
|
500
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1075
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
501
1076
|
|
|
502
1077
|
|
|
503
1078
|
### Bug Fixes
|
|
504
1079
|
|
|
505
|
-
* 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))
|
|
506
1081
|
|
|
507
1082
|
|
|
508
1083
|
### Dependencies
|
|
@@ -511,12 +1086,12 @@
|
|
|
511
1086
|
* dependencies
|
|
512
1087
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
513
1088
|
|
|
514
|
-
## [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)
|
|
515
1090
|
|
|
516
1091
|
|
|
517
1092
|
### Features
|
|
518
1093
|
|
|
519
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1094
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
520
1095
|
|
|
521
1096
|
|
|
522
1097
|
### Dependencies
|
|
@@ -525,7 +1100,7 @@
|
|
|
525
1100
|
* dependencies
|
|
526
1101
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
527
1102
|
|
|
528
|
-
## [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)
|
|
529
1104
|
|
|
530
1105
|
|
|
531
1106
|
### Miscellaneous Chores
|
|
@@ -539,7 +1114,7 @@
|
|
|
539
1114
|
* dependencies
|
|
540
1115
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.27 to 0.0.1-next.28
|
|
541
1116
|
|
|
542
|
-
## [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)
|
|
543
1118
|
|
|
544
1119
|
|
|
545
1120
|
### Miscellaneous Chores
|
|
@@ -553,7 +1128,7 @@
|
|
|
553
1128
|
* dependencies
|
|
554
1129
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.26 to 0.0.1-next.27
|
|
555
1130
|
|
|
556
|
-
## [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)
|
|
557
1132
|
|
|
558
1133
|
|
|
559
1134
|
### Miscellaneous Chores
|
|
@@ -567,12 +1142,12 @@
|
|
|
567
1142
|
* dependencies
|
|
568
1143
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.25 to 0.0.1-next.26
|
|
569
1144
|
|
|
570
|
-
## [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)
|
|
571
1146
|
|
|
572
1147
|
|
|
573
1148
|
### Features
|
|
574
1149
|
|
|
575
|
-
* add ts-to-schema overrides ([3c54504](https://github.com/
|
|
1150
|
+
* add ts-to-schema overrides ([3c54504](https://github.com/iotaledger/twin-tools/commit/3c5450468eb998204a75576b7791a7ca4027da62))
|
|
576
1151
|
|
|
577
1152
|
|
|
578
1153
|
### Dependencies
|
|
@@ -581,7 +1156,7 @@
|
|
|
581
1156
|
* dependencies
|
|
582
1157
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.24 to 0.0.1-next.25
|
|
583
1158
|
|
|
584
|
-
## [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)
|
|
585
1160
|
|
|
586
1161
|
|
|
587
1162
|
### Miscellaneous Chores
|
|
@@ -595,7 +1170,7 @@
|
|
|
595
1170
|
* dependencies
|
|
596
1171
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.23 to 0.0.1-next.24
|
|
597
1172
|
|
|
598
|
-
## [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)
|
|
599
1174
|
|
|
600
1175
|
|
|
601
1176
|
### Miscellaneous Chores
|
|
@@ -609,7 +1184,7 @@
|
|
|
609
1184
|
* dependencies
|
|
610
1185
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.22 to 0.0.1-next.23
|
|
611
1186
|
|
|
612
|
-
## [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)
|
|
613
1188
|
|
|
614
1189
|
|
|
615
1190
|
### Miscellaneous Chores
|
|
@@ -623,12 +1198,12 @@
|
|
|
623
1198
|
* dependencies
|
|
624
1199
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.21 to 0.0.1-next.22
|
|
625
1200
|
|
|
626
|
-
## [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)
|
|
627
1202
|
|
|
628
1203
|
|
|
629
1204
|
### Features
|
|
630
1205
|
|
|
631
|
-
* 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))
|
|
632
1207
|
|
|
633
1208
|
|
|
634
1209
|
### Dependencies
|
|
@@ -637,7 +1212,7 @@
|
|
|
637
1212
|
* dependencies
|
|
638
1213
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.20 to 0.0.1-next.21
|
|
639
1214
|
|
|
640
|
-
## [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)
|
|
641
1216
|
|
|
642
1217
|
|
|
643
1218
|
### Miscellaneous Chores
|
|
@@ -651,7 +1226,7 @@
|
|
|
651
1226
|
* dependencies
|
|
652
1227
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.19 to 0.0.1-next.20
|
|
653
1228
|
|
|
654
|
-
## [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)
|
|
655
1230
|
|
|
656
1231
|
|
|
657
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
|
}
|