@abaplint/cli 2.95.41 → 2.95.43
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/cli.js +1244 -1244
- package/build/src/index.d.ts +20 -20
- package/package.json +5 -5
package/build/src/index.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { Issue, IRegistry } from "@abaplint/core";
|
|
2
|
-
export declare const GENERIC_ERROR = "generic_error";
|
|
3
|
-
export type Arguments = {
|
|
4
|
-
configFilename?: string;
|
|
5
|
-
format: string;
|
|
6
|
-
compress?: boolean;
|
|
7
|
-
|
|
8
|
-
showHelp?: boolean;
|
|
9
|
-
showVersion?: boolean;
|
|
10
|
-
outputDefaultConfig?: boolean;
|
|
11
|
-
runFix?: boolean;
|
|
12
|
-
runRename?: boolean;
|
|
13
|
-
outFormat?: string;
|
|
14
|
-
outFile?: string;
|
|
15
|
-
};
|
|
16
|
-
export declare function run(arg: Arguments): Promise<{
|
|
17
|
-
output: string;
|
|
18
|
-
issues: Issue[];
|
|
19
|
-
reg: IRegistry | undefined;
|
|
20
|
-
}>;
|
|
1
|
+
import { Issue, IRegistry } from "@abaplint/core";
|
|
2
|
+
export declare const GENERIC_ERROR = "generic_error";
|
|
3
|
+
export type Arguments = {
|
|
4
|
+
configFilename?: string;
|
|
5
|
+
format: string;
|
|
6
|
+
compress?: boolean;
|
|
7
|
+
performanceInformation?: boolean;
|
|
8
|
+
showHelp?: boolean;
|
|
9
|
+
showVersion?: boolean;
|
|
10
|
+
outputDefaultConfig?: boolean;
|
|
11
|
+
runFix?: boolean;
|
|
12
|
+
runRename?: boolean;
|
|
13
|
+
outFormat?: string;
|
|
14
|
+
outFile?: string;
|
|
15
|
+
};
|
|
16
|
+
export declare function run(arg: Arguments): Promise<{
|
|
17
|
+
output: string;
|
|
18
|
+
issues: Issue[];
|
|
19
|
+
reg: IRegistry | undefined;
|
|
20
|
+
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.95.
|
|
3
|
+
"version": "2.95.43",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"bin": {
|
|
6
6
|
"abaplint": "./abaplint"
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://abaplint.org",
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@abaplint/core": "^2.95.
|
|
40
|
+
"@abaplint/core": "^2.95.43",
|
|
41
41
|
"@types/chai": "^4.3.4",
|
|
42
42
|
"@types/glob": "^7.2.0",
|
|
43
43
|
"@types/minimist": "^1.2.2",
|
|
44
44
|
"@types/mocha": "^10.0.1",
|
|
45
|
-
"@types/node": "^18.15.
|
|
45
|
+
"@types/node": "^18.15.3",
|
|
46
46
|
"@types/progress": "^2.0.5",
|
|
47
47
|
"chai": "^4.3.7",
|
|
48
48
|
"chalk": "^5.2.0",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"minimist": "^1.2.8",
|
|
54
54
|
"mocha": "^10.2.0",
|
|
55
55
|
"progress": "^2.0.3",
|
|
56
|
-
"typescript": "^
|
|
57
|
-
"webpack": "^5.76.
|
|
56
|
+
"typescript": "^5.0.2",
|
|
57
|
+
"webpack": "^5.76.2",
|
|
58
58
|
"webpack-cli": "^5.0.1",
|
|
59
59
|
"xml-js": "^1.6.11"
|
|
60
60
|
},
|