@abaplint/transpiler-cli 2.10.21 → 2.10.22
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/LICENSE +21 -21
- package/README.md +12 -12
- package/abap_transpile +1 -1
- package/build/bundle.js +1366 -1043
- package/build/types.d.ts +3 -1
- package/package.json +42 -42
- package/schema.json +13 -4
package/build/types.d.ts
CHANGED
|
@@ -4,7 +4,9 @@ export interface ITranspilerConfig {
|
|
|
4
4
|
/** list of regex, case insensitive, empty gives all files, positive list */
|
|
5
5
|
input_filter?: string[];
|
|
6
6
|
output_folder: string;
|
|
7
|
-
/** to be deprecated, "lib"
|
|
7
|
+
/** to be deprecated, "lib", use "libs" instead
|
|
8
|
+
* @deprecated
|
|
9
|
+
*/
|
|
8
10
|
lib?: string;
|
|
9
11
|
libs?: {
|
|
10
12
|
url?: string;
|
package/package.json
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.10.
|
|
4
|
-
"description": "Transpiler - Command Line Interface",
|
|
5
|
-
"funding": "https://github.com/sponsors/larshp",
|
|
6
|
-
"bin": {
|
|
7
|
-
"abap_transpile": "abap_transpile"
|
|
8
|
-
},
|
|
9
|
-
"types": "./build/types.d.ts",
|
|
10
|
-
"keywords": [
|
|
11
|
-
"ABAP",
|
|
12
|
-
"abaplint"
|
|
13
|
-
],
|
|
14
|
-
"repository": {
|
|
15
|
-
"type": "git",
|
|
16
|
-
"url": "git+https://github.com/abaplint/transpiler.git"
|
|
17
|
-
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"test": "tsc && npm run webpack",
|
|
20
|
-
"publish:major": "npm --no-git-tag-version version major && rm -rf build && npm install && npm run test && npm publish --access public",
|
|
21
|
-
"publish:minor": "npm --no-git-tag-version version minor && rm -rf build && npm install && npm run test && npm publish --access public",
|
|
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",
|
|
24
|
-
"compile": "npm test",
|
|
25
|
-
"webpack": "webpack --progress"
|
|
26
|
-
},
|
|
27
|
-
"author": "abaplint",
|
|
28
|
-
"license": "MIT",
|
|
29
|
-
"devDependencies": {
|
|
30
|
-
"@abaplint/transpiler": "^2.10.
|
|
31
|
-
"@types/glob": "^8.1.0",
|
|
32
|
-
"glob": "=7.2.0",
|
|
33
|
-
"@types/progress": "^2.0.7",
|
|
34
|
-
"ts-json-schema-generator": "^2.3.0",
|
|
35
|
-
"@types/node": "^22.10.
|
|
36
|
-
"@abaplint/core": "^2.113.
|
|
37
|
-
"progress": "^2.0.3",
|
|
38
|
-
"webpack": "^5.
|
|
39
|
-
"webpack-cli": "^5.1.4",
|
|
40
|
-
"typescript": "^5.
|
|
41
|
-
}
|
|
42
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@abaplint/transpiler-cli",
|
|
3
|
+
"version": "2.10.22",
|
|
4
|
+
"description": "Transpiler - Command Line Interface",
|
|
5
|
+
"funding": "https://github.com/sponsors/larshp",
|
|
6
|
+
"bin": {
|
|
7
|
+
"abap_transpile": "abap_transpile"
|
|
8
|
+
},
|
|
9
|
+
"types": "./build/types.d.ts",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"ABAP",
|
|
12
|
+
"abaplint"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/abaplint/transpiler.git"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"test": "tsc && npm run webpack",
|
|
20
|
+
"publish:major": "npm --no-git-tag-version version major && rm -rf build && npm install && npm run test && npm publish --access public",
|
|
21
|
+
"publish:minor": "npm --no-git-tag-version version minor && rm -rf build && npm install && npm run test && npm publish --access public",
|
|
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",
|
|
24
|
+
"compile": "npm test",
|
|
25
|
+
"webpack": "webpack --progress"
|
|
26
|
+
},
|
|
27
|
+
"author": "abaplint",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@abaplint/transpiler": "^2.10.22",
|
|
31
|
+
"@types/glob": "^8.1.0",
|
|
32
|
+
"glob": "=7.2.0",
|
|
33
|
+
"@types/progress": "^2.0.7",
|
|
34
|
+
"ts-json-schema-generator": "^2.3.0",
|
|
35
|
+
"@types/node": "^22.10.2",
|
|
36
|
+
"@abaplint/core": "^2.113.79",
|
|
37
|
+
"progress": "^2.0.3",
|
|
38
|
+
"webpack": "^5.97.1",
|
|
39
|
+
"webpack-cli": "^5.1.4",
|
|
40
|
+
"typescript": "^5.7.2"
|
|
41
|
+
}
|
|
42
|
+
}
|
package/schema.json
CHANGED
|
@@ -13,10 +13,21 @@
|
|
|
13
13
|
"type": "array"
|
|
14
14
|
},
|
|
15
15
|
"input_folder": {
|
|
16
|
-
"
|
|
16
|
+
"anyOf": [
|
|
17
|
+
{
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"items": {
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"type": "array"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
17
27
|
},
|
|
18
28
|
"lib": {
|
|
19
|
-
"
|
|
29
|
+
"deprecated": true,
|
|
30
|
+
"description": "to be deprecated, \"lib\", use \"libs\" instead",
|
|
20
31
|
"type": "string"
|
|
21
32
|
},
|
|
22
33
|
"libs": {
|
|
@@ -63,8 +74,6 @@
|
|
|
63
74
|
"required": [
|
|
64
75
|
"input_folder",
|
|
65
76
|
"output_folder",
|
|
66
|
-
"write_unit_tests",
|
|
67
|
-
"write_source_map",
|
|
68
77
|
"options"
|
|
69
78
|
],
|
|
70
79
|
"type": "object"
|