@storm-software/workspace-tools 1.43.21 → 1.45.0
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/CHANGELOG.md +14 -0
- package/executors.json +5 -0
- package/index.js +751 -55
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +13 -24
- package/src/executors/tsup-browser/executor.js +13 -24
- package/src/executors/tsup-neutral/executor.js +13 -24
- package/src/executors/tsup-node/executor.js +13 -24
- package/src/executors/typia/executor.js +37128 -0
- package/src/executors/typia/schema.d.ts +6 -0
- package/src/executors/typia/schema.json +38 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"$id": "typia",
|
|
4
|
+
"version": 2,
|
|
5
|
+
"title": "Typia Generate Executor",
|
|
6
|
+
"description": "Run the Typia generator to create runtime type validators",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"entryPath": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "The path of the typescript files using `typia`.",
|
|
12
|
+
"alias": "main",
|
|
13
|
+
"default": "{sourceRoot}"
|
|
14
|
+
},
|
|
15
|
+
"outputPath": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"description": "The output path of the generated files.",
|
|
18
|
+
"x-completion-type": "directory",
|
|
19
|
+
"x-priority": "important",
|
|
20
|
+
"default": "{sourceRoot}/__generated__/typia"
|
|
21
|
+
},
|
|
22
|
+
"tsConfig": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"description": "The path to the `tsconfig.json` file.",
|
|
25
|
+
"x-completion-type": "file",
|
|
26
|
+
"x-completion-glob": "tsconfig.*.json",
|
|
27
|
+
"x-priority": "important",
|
|
28
|
+
"default": "{projectRoot}/tsconfig.json"
|
|
29
|
+
},
|
|
30
|
+
"clean": {
|
|
31
|
+
"type": "boolean",
|
|
32
|
+
"description": "Remove previous output before build.",
|
|
33
|
+
"alias": "deleteOutputPath",
|
|
34
|
+
"default": true
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"required": ["entryPath", "outputPath", "tsConfig"]
|
|
38
|
+
}
|