@twin.org/nameof-transformer 0.0.1-next.1 → 0.0.1-next.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/index.cjs
CHANGED
|
@@ -173,7 +173,7 @@ const factory = () => transformerFactory;
|
|
|
173
173
|
* Exports the factory version.
|
|
174
174
|
* @returns The factory.
|
|
175
175
|
*/
|
|
176
|
-
const version = "0.0.1-next.
|
|
176
|
+
const version = "0.0.1-next.10";
|
|
177
177
|
/**
|
|
178
178
|
* Exports the factory name.
|
|
179
179
|
* @returns The factory.
|
package/dist/esm/index.mjs
CHANGED
|
@@ -150,7 +150,7 @@ const factory = () => transformerFactory;
|
|
|
150
150
|
* Exports the factory version.
|
|
151
151
|
* @returns The factory.
|
|
152
152
|
*/
|
|
153
|
-
const version = "0.0.1-next.
|
|
153
|
+
const version = "0.0.1-next.10";
|
|
154
154
|
/**
|
|
155
155
|
* Exports the factory name.
|
|
156
156
|
* @returns The factory.
|
package/docs/changelog.md
CHANGED
package/docs/configuration.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/nameof-transformer",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.10",
|
|
4
4
|
"description": "A TypeScript transformer which converts types and properties to their actual name for use at runtime",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -13,34 +13,9 @@
|
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"clean": "rimraf dist coverage",
|
|
18
|
-
"build": "tsc",
|
|
19
|
-
"test": "vitest --run --config ./vitest.config.ts --no-cache",
|
|
20
|
-
"coverage": "vitest --run --coverage --config ./vitest.config.ts --no-cache",
|
|
21
|
-
"bundle:esm": "rollup --config rollup.config.mjs --environment MODULE:esm",
|
|
22
|
-
"bundle:cjs": "rollup --config rollup.config.mjs --environment MODULE:cjs",
|
|
23
|
-
"bundle": "npm run bundle:esm && npm run bundle:cjs",
|
|
24
|
-
"docs:clean": "rimraf docs/reference",
|
|
25
|
-
"docs:generate": "typedoc",
|
|
26
|
-
"docs": "npm run docs:clean && npm run docs:generate",
|
|
27
|
-
"dist": "npm run clean && npm run build && npm run test && npm run bundle && npm run docs"
|
|
28
|
-
},
|
|
29
16
|
"dependencies": {
|
|
30
17
|
"typescript": "5.6.2"
|
|
31
18
|
},
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"@vitest/coverage-v8": "2.1.1",
|
|
34
|
-
"copyfiles": "2.4.1",
|
|
35
|
-
"replace-in-files-cli": "3.0.0",
|
|
36
|
-
"rimraf": "6.0.1",
|
|
37
|
-
"rollup": "4.21.3",
|
|
38
|
-
"rollup-plugin-typescript2": "0.36.0",
|
|
39
|
-
"typedoc": "0.26.7",
|
|
40
|
-
"typedoc-plugin-markdown": "4.2.7",
|
|
41
|
-
"typescript": "5.6.2",
|
|
42
|
-
"vitest": "2.1.1"
|
|
43
|
-
},
|
|
44
19
|
"main": "./dist/cjs/index.cjs",
|
|
45
20
|
"module": "./dist/esm/index.mjs",
|
|
46
21
|
"exports": {
|