@abaplint/transpiler-cli 2.10.45 → 2.10.46

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/abap_transpile CHANGED
@@ -1,2 +1,2 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
  require("./build/bundle");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler-cli",
3
- "version": "2.10.45",
3
+ "version": "2.10.46",
4
4
  "description": "Transpiler - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -28,7 +28,7 @@
28
28
  "license": "MIT",
29
29
  "devDependencies": {
30
30
  "@abaplint/core": "^2.113.110",
31
- "@abaplint/transpiler": "^2.10.45",
31
+ "@abaplint/transpiler": "^2.10.46",
32
32
  "@types/glob": "^8.1.0",
33
33
  "@types/node": "^22.15.2",
34
34
  "@types/progress": "^2.0.7",
package/schema.json DELETED
@@ -1,161 +0,0 @@
1
- {
2
- "$ref": "#/definitions/ITranspilerConfig",
3
- "$schema": "http://json-schema.org/draft-07/schema#",
4
- "definitions": {
5
- "ITranspilerConfig": {
6
- "additionalProperties": false,
7
- "properties": {
8
- "input_filter": {
9
- "description": "list of regex, case insensitive, empty gives all files, positive list",
10
- "items": {
11
- "type": "string"
12
- },
13
- "type": "array"
14
- },
15
- "input_folder": {
16
- "anyOf": [
17
- {
18
- "type": "string"
19
- },
20
- {
21
- "items": {
22
- "type": "string"
23
- },
24
- "type": "array"
25
- }
26
- ]
27
- },
28
- "lib": {
29
- "deprecated": true,
30
- "description": "to be deprecated, \"lib\", use \"libs\" instead",
31
- "type": "string"
32
- },
33
- "libs": {
34
- "items": {
35
- "additionalProperties": false,
36
- "properties": {
37
- "files": {
38
- "anyOf": [
39
- {
40
- "type": "string"
41
- },
42
- {
43
- "items": {
44
- "type": "string"
45
- },
46
- "type": "array"
47
- }
48
- ]
49
- },
50
- "folder": {
51
- "type": "string"
52
- },
53
- "url": {
54
- "type": "string"
55
- }
56
- },
57
- "type": "object"
58
- },
59
- "type": "array"
60
- },
61
- "options": {
62
- "$ref": "#/definitions/ITranspilerOptions"
63
- },
64
- "output_folder": {
65
- "type": "string"
66
- },
67
- "write_source_map": {
68
- "type": "boolean"
69
- },
70
- "write_unit_tests": {
71
- "type": "boolean"
72
- }
73
- },
74
- "required": [
75
- "input_folder",
76
- "output_folder",
77
- "options"
78
- ],
79
- "type": "object"
80
- },
81
- "ITranspilerOptions": {
82
- "additionalProperties": false,
83
- "properties": {
84
- "addCommonJS": {
85
- "description": "adds common js modules",
86
- "type": "boolean"
87
- },
88
- "addFilenames": {
89
- "description": "adds filenames as comments in the output js",
90
- "type": "boolean"
91
- },
92
- "extraSetup": {
93
- "description": "extra setup script to be executed during initialization",
94
- "type": "string"
95
- },
96
- "ignoreSourceMap": {
97
- "description": "ignore source map",
98
- "type": "boolean"
99
- },
100
- "ignoreSyntaxCheck": {
101
- "description": "ignore syntax check, used for internal testing",
102
- "type": "boolean"
103
- },
104
- "keywords": {
105
- "description": "list of keywords to rename, if not supplied default will be used",
106
- "items": {
107
- "type": "string"
108
- },
109
- "type": "array"
110
- },
111
- "skip": {
112
- "$ref": "#/definitions/TestMethodList",
113
- "description": "list of unit tests to skip"
114
- },
115
- "skipConstants": {
116
- "description": "skip outputing constants, used for internal testing",
117
- "type": "boolean"
118
- },
119
- "skipReposrc": {
120
- "description": "dont insert into REPOSRC",
121
- "type": "boolean"
122
- },
123
- "unknownTypes": {
124
- "$ref": "#/definitions/UnknownTypesEnum",
125
- "description": "sets behavior for unknown types, either fail at compile- or run-time"
126
- }
127
- },
128
- "type": "object"
129
- },
130
- "TestMethodList": {
131
- "items": {
132
- "additionalProperties": false,
133
- "properties": {
134
- "class": {
135
- "type": "string"
136
- },
137
- "method": {
138
- "type": "string"
139
- },
140
- "object": {
141
- "type": "string"
142
- }
143
- },
144
- "required": [
145
- "object",
146
- "class",
147
- "method"
148
- ],
149
- "type": "object"
150
- },
151
- "type": "array"
152
- },
153
- "UnknownTypesEnum": {
154
- "enum": [
155
- "compileError",
156
- "runtimeError"
157
- ],
158
- "type": "string"
159
- }
160
- }
161
- }