@abaplint/transpiler-cli 2.10.18 → 2.10.20
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/build/bundle.js +957 -867
- package/build/types.d.ts +3 -3
- package/package.json +7 -5
package/build/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ITranspilerOptions } from "@abaplint/transpiler";
|
|
2
2
|
export interface ITranspilerConfig {
|
|
3
|
-
input_folder: string;
|
|
3
|
+
input_folder: string | string[];
|
|
4
4
|
/** list of regex, case insensitive, empty gives all files, positive list */
|
|
5
5
|
input_filter?: string[];
|
|
6
6
|
output_folder: string;
|
|
@@ -11,7 +11,7 @@ export interface ITranspilerConfig {
|
|
|
11
11
|
folder?: string;
|
|
12
12
|
files?: string | string[];
|
|
13
13
|
}[];
|
|
14
|
-
write_unit_tests
|
|
15
|
-
write_source_map
|
|
14
|
+
write_unit_tests?: boolean;
|
|
15
|
+
write_source_map?: boolean;
|
|
16
16
|
options: ITranspilerOptions;
|
|
17
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.20",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -20,20 +20,22 @@
|
|
|
20
20
|
"publish:major": "npm --no-git-tag-version version major && rm -rf build && npm install && npm run test && npm publish --access public",
|
|
21
21
|
"publish:minor": "npm --no-git-tag-version version minor && rm -rf build && npm install && npm run test && npm publish --access public",
|
|
22
22
|
"publish:patch": "npm --no-git-tag-version version patch && rm -rf build && npm install && npm run test && npm publish --access public",
|
|
23
|
+
"schema": "ts-json-schema-generator --tsconfig tsconfig.json --jsDoc extended --path src/types.ts > schema.json",
|
|
23
24
|
"compile": "npm test",
|
|
24
25
|
"webpack": "webpack --progress"
|
|
25
26
|
},
|
|
26
27
|
"author": "abaplint",
|
|
27
28
|
"license": "MIT",
|
|
28
29
|
"devDependencies": {
|
|
29
|
-
"@abaplint/transpiler": "^2.10.
|
|
30
|
+
"@abaplint/transpiler": "^2.10.20",
|
|
30
31
|
"@types/glob": "^8.1.0",
|
|
31
32
|
"glob": "=7.2.0",
|
|
32
33
|
"@types/progress": "^2.0.7",
|
|
33
|
-
"
|
|
34
|
-
"@
|
|
34
|
+
"ts-json-schema-generator": "^2.3.0",
|
|
35
|
+
"@types/node": "^22.7.4",
|
|
36
|
+
"@abaplint/core": "^2.113.16",
|
|
35
37
|
"progress": "^2.0.3",
|
|
36
|
-
"webpack": "^5.
|
|
38
|
+
"webpack": "^5.95.0",
|
|
37
39
|
"webpack-cli": "^5.1.4",
|
|
38
40
|
"typescript": "^5.6.2"
|
|
39
41
|
}
|