@abaplint/cli 2.100.3 → 2.100.5

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.
Files changed (2) hide show
  1. package/build/cli.js +113 -101
  2. package/package.json +4 -4
package/build/cli.js CHANGED
@@ -47757,7 +47757,7 @@ class Registry {
47757
47757
  }
47758
47758
  static abaplintVersion() {
47759
47759
  // magic, see build script "version.sh"
47760
- return "2.100.3";
47760
+ return "2.100.5";
47761
47761
  }
47762
47762
  getDDICReferences() {
47763
47763
  return this.ddicReferences;
@@ -54399,11 +54399,12 @@ ${indentation} output = ${topTarget}.`;
54399
54399
  body += indentation + structureName + "-" + b.concatTokens() + ".\n";
54400
54400
  }
54401
54401
  else if (b.get() instanceof Expressions.Source) {
54402
- body += indentation + "APPEND " + b.concatTokens() + ` TO ${uniqueName}.\n`;
54402
+ // note: it wont work with APPEND for Hashed/Sorted Tables, so use INSERT,
54403
+ body += indentation + "INSERT " + b.concatTokens() + ` INTO TABLE ${uniqueName}.\n`;
54403
54404
  skip = true;
54404
54405
  }
54405
54406
  else if (b.get() instanceof Expressions.ValueBodyLines) {
54406
- body += indentation + "APPEND " + b.concatTokens() + ` TO ${uniqueName}.\n`;
54407
+ body += indentation + "INSERT " + b.concatTokens() + ` INTO TABLE ${uniqueName}.\n`;
54407
54408
  skip = true;
54408
54409
  }
54409
54410
  else if (b.concatTokens() === ")") {
@@ -54412,7 +54413,7 @@ ${indentation} output = ${topTarget}.`;
54412
54413
  added = true;
54413
54414
  }
54414
54415
  if (skip === false) {
54415
- body += indentation + `APPEND ${structureName} TO ${uniqueName}.\n`;
54416
+ body += indentation + `INSERT ${structureName} INTO TABLE ${uniqueName}.\n`;
54416
54417
  }
54417
54418
  }
54418
54419
  previous = b;
@@ -57097,7 +57098,16 @@ IF condition1.
57097
57098
  ...
57098
57099
  ELSEIF condition2.
57099
57100
  ...
57100
- ENDIF.`,
57101
+ ENDIF.
57102
+
57103
+ CASE variable.
57104
+ WHEN value1.
57105
+ ...
57106
+ WHEN value2.
57107
+ IF condition2.
57108
+ ...
57109
+ ENDIF.
57110
+ ENDCASE.`,
57101
57111
  tags: [_irule_1.RuleTag.Styleguide, _irule_1.RuleTag.SingleFile, _irule_1.RuleTag.Quickfix],
57102
57112
  };
57103
57113
  }
@@ -65716,13 +65726,15 @@ class TypesNaming extends _abap_rule_1.ABAPRule {
65716
65726
  if (stat.get() instanceof Statements.Type && nesting === 0) {
65717
65727
  expr = stat.findFirstExpression(Expressions.NamespaceSimpleName);
65718
65728
  }
65719
- else if (stat.get() instanceof Statements.TypeBegin) {
65729
+ else if (stat.get() instanceof Statements.TypeBegin
65730
+ || stat.get() instanceof Statements.TypeEnumBegin) {
65720
65731
  if (nesting === 0) {
65721
65732
  expr = stat.findFirstExpression(Expressions.NamespaceSimpleName);
65722
65733
  }
65723
65734
  nesting = nesting + 1;
65724
65735
  }
65725
- else if (stat.get() instanceof Statements.TypeEnd) {
65736
+ else if (stat.get() instanceof Statements.TypeEnd
65737
+ || stat.get() instanceof Statements.TypeEnumEnd) {
65726
65738
  nesting = nesting - 1;
65727
65739
  continue;
65728
65740
  }
@@ -76482,81 +76494,81 @@ module.exports = toNumber
76482
76494
  "use strict";
76483
76495
  __webpack_require__.r(__webpack_exports__);
76484
76496
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
76485
- /* harmony export */ "AnnotatedTextEdit": () => (/* binding */ AnnotatedTextEdit),
76486
- /* harmony export */ "ChangeAnnotation": () => (/* binding */ ChangeAnnotation),
76487
- /* harmony export */ "ChangeAnnotationIdentifier": () => (/* binding */ ChangeAnnotationIdentifier),
76488
- /* harmony export */ "CodeAction": () => (/* binding */ CodeAction),
76489
- /* harmony export */ "CodeActionContext": () => (/* binding */ CodeActionContext),
76490
- /* harmony export */ "CodeActionKind": () => (/* binding */ CodeActionKind),
76491
- /* harmony export */ "CodeActionTriggerKind": () => (/* binding */ CodeActionTriggerKind),
76492
- /* harmony export */ "CodeDescription": () => (/* binding */ CodeDescription),
76493
- /* harmony export */ "CodeLens": () => (/* binding */ CodeLens),
76494
- /* harmony export */ "Color": () => (/* binding */ Color),
76495
- /* harmony export */ "ColorInformation": () => (/* binding */ ColorInformation),
76496
- /* harmony export */ "ColorPresentation": () => (/* binding */ ColorPresentation),
76497
- /* harmony export */ "Command": () => (/* binding */ Command),
76498
- /* harmony export */ "CompletionItem": () => (/* binding */ CompletionItem),
76499
- /* harmony export */ "CompletionItemKind": () => (/* binding */ CompletionItemKind),
76500
- /* harmony export */ "CompletionItemLabelDetails": () => (/* binding */ CompletionItemLabelDetails),
76501
- /* harmony export */ "CompletionItemTag": () => (/* binding */ CompletionItemTag),
76502
- /* harmony export */ "CompletionList": () => (/* binding */ CompletionList),
76503
- /* harmony export */ "CreateFile": () => (/* binding */ CreateFile),
76504
- /* harmony export */ "DeleteFile": () => (/* binding */ DeleteFile),
76505
- /* harmony export */ "Diagnostic": () => (/* binding */ Diagnostic),
76506
- /* harmony export */ "DiagnosticRelatedInformation": () => (/* binding */ DiagnosticRelatedInformation),
76507
- /* harmony export */ "DiagnosticSeverity": () => (/* binding */ DiagnosticSeverity),
76508
- /* harmony export */ "DiagnosticTag": () => (/* binding */ DiagnosticTag),
76509
- /* harmony export */ "DocumentHighlight": () => (/* binding */ DocumentHighlight),
76510
- /* harmony export */ "DocumentHighlightKind": () => (/* binding */ DocumentHighlightKind),
76511
- /* harmony export */ "DocumentLink": () => (/* binding */ DocumentLink),
76512
- /* harmony export */ "DocumentSymbol": () => (/* binding */ DocumentSymbol),
76513
- /* harmony export */ "DocumentUri": () => (/* binding */ DocumentUri),
76514
- /* harmony export */ "EOL": () => (/* binding */ EOL),
76515
- /* harmony export */ "FoldingRange": () => (/* binding */ FoldingRange),
76516
- /* harmony export */ "FoldingRangeKind": () => (/* binding */ FoldingRangeKind),
76517
- /* harmony export */ "FormattingOptions": () => (/* binding */ FormattingOptions),
76518
- /* harmony export */ "Hover": () => (/* binding */ Hover),
76519
- /* harmony export */ "InlayHint": () => (/* binding */ InlayHint),
76520
- /* harmony export */ "InlayHintKind": () => (/* binding */ InlayHintKind),
76521
- /* harmony export */ "InlayHintLabelPart": () => (/* binding */ InlayHintLabelPart),
76522
- /* harmony export */ "InlineValueContext": () => (/* binding */ InlineValueContext),
76523
- /* harmony export */ "InlineValueEvaluatableExpression": () => (/* binding */ InlineValueEvaluatableExpression),
76524
- /* harmony export */ "InlineValueText": () => (/* binding */ InlineValueText),
76525
- /* harmony export */ "InlineValueVariableLookup": () => (/* binding */ InlineValueVariableLookup),
76526
- /* harmony export */ "InsertReplaceEdit": () => (/* binding */ InsertReplaceEdit),
76527
- /* harmony export */ "InsertTextFormat": () => (/* binding */ InsertTextFormat),
76528
- /* harmony export */ "InsertTextMode": () => (/* binding */ InsertTextMode),
76529
- /* harmony export */ "Location": () => (/* binding */ Location),
76530
- /* harmony export */ "LocationLink": () => (/* binding */ LocationLink),
76531
- /* harmony export */ "MarkedString": () => (/* binding */ MarkedString),
76532
- /* harmony export */ "MarkupContent": () => (/* binding */ MarkupContent),
76533
- /* harmony export */ "MarkupKind": () => (/* binding */ MarkupKind),
76534
- /* harmony export */ "OptionalVersionedTextDocumentIdentifier": () => (/* binding */ OptionalVersionedTextDocumentIdentifier),
76535
- /* harmony export */ "ParameterInformation": () => (/* binding */ ParameterInformation),
76536
- /* harmony export */ "Position": () => (/* binding */ Position),
76537
- /* harmony export */ "Range": () => (/* binding */ Range),
76538
- /* harmony export */ "RenameFile": () => (/* binding */ RenameFile),
76539
- /* harmony export */ "SelectionRange": () => (/* binding */ SelectionRange),
76540
- /* harmony export */ "SemanticTokenModifiers": () => (/* binding */ SemanticTokenModifiers),
76541
- /* harmony export */ "SemanticTokenTypes": () => (/* binding */ SemanticTokenTypes),
76542
- /* harmony export */ "SemanticTokens": () => (/* binding */ SemanticTokens),
76543
- /* harmony export */ "SignatureInformation": () => (/* binding */ SignatureInformation),
76544
- /* harmony export */ "SymbolInformation": () => (/* binding */ SymbolInformation),
76545
- /* harmony export */ "SymbolKind": () => (/* binding */ SymbolKind),
76546
- /* harmony export */ "SymbolTag": () => (/* binding */ SymbolTag),
76547
- /* harmony export */ "TextDocument": () => (/* binding */ TextDocument),
76548
- /* harmony export */ "TextDocumentEdit": () => (/* binding */ TextDocumentEdit),
76549
- /* harmony export */ "TextDocumentIdentifier": () => (/* binding */ TextDocumentIdentifier),
76550
- /* harmony export */ "TextDocumentItem": () => (/* binding */ TextDocumentItem),
76551
- /* harmony export */ "TextEdit": () => (/* binding */ TextEdit),
76552
- /* harmony export */ "URI": () => (/* binding */ URI),
76553
- /* harmony export */ "VersionedTextDocumentIdentifier": () => (/* binding */ VersionedTextDocumentIdentifier),
76554
- /* harmony export */ "WorkspaceChange": () => (/* binding */ WorkspaceChange),
76555
- /* harmony export */ "WorkspaceEdit": () => (/* binding */ WorkspaceEdit),
76556
- /* harmony export */ "WorkspaceFolder": () => (/* binding */ WorkspaceFolder),
76557
- /* harmony export */ "WorkspaceSymbol": () => (/* binding */ WorkspaceSymbol),
76558
- /* harmony export */ "integer": () => (/* binding */ integer),
76559
- /* harmony export */ "uinteger": () => (/* binding */ uinteger)
76497
+ /* harmony export */ AnnotatedTextEdit: () => (/* binding */ AnnotatedTextEdit),
76498
+ /* harmony export */ ChangeAnnotation: () => (/* binding */ ChangeAnnotation),
76499
+ /* harmony export */ ChangeAnnotationIdentifier: () => (/* binding */ ChangeAnnotationIdentifier),
76500
+ /* harmony export */ CodeAction: () => (/* binding */ CodeAction),
76501
+ /* harmony export */ CodeActionContext: () => (/* binding */ CodeActionContext),
76502
+ /* harmony export */ CodeActionKind: () => (/* binding */ CodeActionKind),
76503
+ /* harmony export */ CodeActionTriggerKind: () => (/* binding */ CodeActionTriggerKind),
76504
+ /* harmony export */ CodeDescription: () => (/* binding */ CodeDescription),
76505
+ /* harmony export */ CodeLens: () => (/* binding */ CodeLens),
76506
+ /* harmony export */ Color: () => (/* binding */ Color),
76507
+ /* harmony export */ ColorInformation: () => (/* binding */ ColorInformation),
76508
+ /* harmony export */ ColorPresentation: () => (/* binding */ ColorPresentation),
76509
+ /* harmony export */ Command: () => (/* binding */ Command),
76510
+ /* harmony export */ CompletionItem: () => (/* binding */ CompletionItem),
76511
+ /* harmony export */ CompletionItemKind: () => (/* binding */ CompletionItemKind),
76512
+ /* harmony export */ CompletionItemLabelDetails: () => (/* binding */ CompletionItemLabelDetails),
76513
+ /* harmony export */ CompletionItemTag: () => (/* binding */ CompletionItemTag),
76514
+ /* harmony export */ CompletionList: () => (/* binding */ CompletionList),
76515
+ /* harmony export */ CreateFile: () => (/* binding */ CreateFile),
76516
+ /* harmony export */ DeleteFile: () => (/* binding */ DeleteFile),
76517
+ /* harmony export */ Diagnostic: () => (/* binding */ Diagnostic),
76518
+ /* harmony export */ DiagnosticRelatedInformation: () => (/* binding */ DiagnosticRelatedInformation),
76519
+ /* harmony export */ DiagnosticSeverity: () => (/* binding */ DiagnosticSeverity),
76520
+ /* harmony export */ DiagnosticTag: () => (/* binding */ DiagnosticTag),
76521
+ /* harmony export */ DocumentHighlight: () => (/* binding */ DocumentHighlight),
76522
+ /* harmony export */ DocumentHighlightKind: () => (/* binding */ DocumentHighlightKind),
76523
+ /* harmony export */ DocumentLink: () => (/* binding */ DocumentLink),
76524
+ /* harmony export */ DocumentSymbol: () => (/* binding */ DocumentSymbol),
76525
+ /* harmony export */ DocumentUri: () => (/* binding */ DocumentUri),
76526
+ /* harmony export */ EOL: () => (/* binding */ EOL),
76527
+ /* harmony export */ FoldingRange: () => (/* binding */ FoldingRange),
76528
+ /* harmony export */ FoldingRangeKind: () => (/* binding */ FoldingRangeKind),
76529
+ /* harmony export */ FormattingOptions: () => (/* binding */ FormattingOptions),
76530
+ /* harmony export */ Hover: () => (/* binding */ Hover),
76531
+ /* harmony export */ InlayHint: () => (/* binding */ InlayHint),
76532
+ /* harmony export */ InlayHintKind: () => (/* binding */ InlayHintKind),
76533
+ /* harmony export */ InlayHintLabelPart: () => (/* binding */ InlayHintLabelPart),
76534
+ /* harmony export */ InlineValueContext: () => (/* binding */ InlineValueContext),
76535
+ /* harmony export */ InlineValueEvaluatableExpression: () => (/* binding */ InlineValueEvaluatableExpression),
76536
+ /* harmony export */ InlineValueText: () => (/* binding */ InlineValueText),
76537
+ /* harmony export */ InlineValueVariableLookup: () => (/* binding */ InlineValueVariableLookup),
76538
+ /* harmony export */ InsertReplaceEdit: () => (/* binding */ InsertReplaceEdit),
76539
+ /* harmony export */ InsertTextFormat: () => (/* binding */ InsertTextFormat),
76540
+ /* harmony export */ InsertTextMode: () => (/* binding */ InsertTextMode),
76541
+ /* harmony export */ Location: () => (/* binding */ Location),
76542
+ /* harmony export */ LocationLink: () => (/* binding */ LocationLink),
76543
+ /* harmony export */ MarkedString: () => (/* binding */ MarkedString),
76544
+ /* harmony export */ MarkupContent: () => (/* binding */ MarkupContent),
76545
+ /* harmony export */ MarkupKind: () => (/* binding */ MarkupKind),
76546
+ /* harmony export */ OptionalVersionedTextDocumentIdentifier: () => (/* binding */ OptionalVersionedTextDocumentIdentifier),
76547
+ /* harmony export */ ParameterInformation: () => (/* binding */ ParameterInformation),
76548
+ /* harmony export */ Position: () => (/* binding */ Position),
76549
+ /* harmony export */ Range: () => (/* binding */ Range),
76550
+ /* harmony export */ RenameFile: () => (/* binding */ RenameFile),
76551
+ /* harmony export */ SelectionRange: () => (/* binding */ SelectionRange),
76552
+ /* harmony export */ SemanticTokenModifiers: () => (/* binding */ SemanticTokenModifiers),
76553
+ /* harmony export */ SemanticTokenTypes: () => (/* binding */ SemanticTokenTypes),
76554
+ /* harmony export */ SemanticTokens: () => (/* binding */ SemanticTokens),
76555
+ /* harmony export */ SignatureInformation: () => (/* binding */ SignatureInformation),
76556
+ /* harmony export */ SymbolInformation: () => (/* binding */ SymbolInformation),
76557
+ /* harmony export */ SymbolKind: () => (/* binding */ SymbolKind),
76558
+ /* harmony export */ SymbolTag: () => (/* binding */ SymbolTag),
76559
+ /* harmony export */ TextDocument: () => (/* binding */ TextDocument),
76560
+ /* harmony export */ TextDocumentEdit: () => (/* binding */ TextDocumentEdit),
76561
+ /* harmony export */ TextDocumentIdentifier: () => (/* binding */ TextDocumentIdentifier),
76562
+ /* harmony export */ TextDocumentItem: () => (/* binding */ TextDocumentItem),
76563
+ /* harmony export */ TextEdit: () => (/* binding */ TextEdit),
76564
+ /* harmony export */ URI: () => (/* binding */ URI),
76565
+ /* harmony export */ VersionedTextDocumentIdentifier: () => (/* binding */ VersionedTextDocumentIdentifier),
76566
+ /* harmony export */ WorkspaceChange: () => (/* binding */ WorkspaceChange),
76567
+ /* harmony export */ WorkspaceEdit: () => (/* binding */ WorkspaceEdit),
76568
+ /* harmony export */ WorkspaceFolder: () => (/* binding */ WorkspaceFolder),
76569
+ /* harmony export */ WorkspaceSymbol: () => (/* binding */ WorkspaceSymbol),
76570
+ /* harmony export */ integer: () => (/* binding */ integer),
76571
+ /* harmony export */ uinteger: () => (/* binding */ uinteger)
76560
76572
  /* harmony export */ });
76561
76573
  /* --------------------------------------------------------------------------------------------
76562
76574
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -79824,19 +79836,19 @@ module.exports = require("zlib");
79824
79836
  "use strict";
79825
79837
  __webpack_require__.r(__webpack_exports__);
79826
79838
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
79827
- /* harmony export */ "Chalk": () => (/* binding */ Chalk),
79828
- /* harmony export */ "backgroundColorNames": () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.backgroundColorNames),
79829
- /* harmony export */ "backgroundColors": () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.backgroundColorNames),
79830
- /* harmony export */ "chalkStderr": () => (/* binding */ chalkStderr),
79831
- /* harmony export */ "colorNames": () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.colorNames),
79832
- /* harmony export */ "colors": () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.colorNames),
79839
+ /* harmony export */ Chalk: () => (/* binding */ Chalk),
79840
+ /* harmony export */ backgroundColorNames: () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.backgroundColorNames),
79841
+ /* harmony export */ backgroundColors: () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.backgroundColorNames),
79842
+ /* harmony export */ chalkStderr: () => (/* binding */ chalkStderr),
79843
+ /* harmony export */ colorNames: () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.colorNames),
79844
+ /* harmony export */ colors: () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.colorNames),
79833
79845
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
79834
- /* harmony export */ "foregroundColorNames": () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.foregroundColorNames),
79835
- /* harmony export */ "foregroundColors": () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.foregroundColorNames),
79836
- /* harmony export */ "modifierNames": () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.modifierNames),
79837
- /* harmony export */ "modifiers": () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.modifierNames),
79838
- /* harmony export */ "supportsColor": () => (/* binding */ stdoutColor),
79839
- /* harmony export */ "supportsColorStderr": () => (/* binding */ stderrColor)
79846
+ /* harmony export */ foregroundColorNames: () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.foregroundColorNames),
79847
+ /* harmony export */ foregroundColors: () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.foregroundColorNames),
79848
+ /* harmony export */ modifierNames: () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.modifierNames),
79849
+ /* harmony export */ modifiers: () => (/* reexport safe */ _ansi_styles__WEBPACK_IMPORTED_MODULE_0__.modifierNames),
79850
+ /* harmony export */ supportsColor: () => (/* binding */ stdoutColor),
79851
+ /* harmony export */ supportsColorStderr: () => (/* binding */ stderrColor)
79840
79852
  /* harmony export */ });
79841
79853
  /* harmony import */ var _ansi_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./vendor/ansi-styles/index.js */ "./node_modules/chalk/source/vendor/ansi-styles/index.js");
79842
79854
  /* harmony import */ var _supports_color__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! #supports-color */ "./node_modules/chalk/source/vendor/supports-color/index.js");
@@ -80062,8 +80074,8 @@ const chalkStderr = createChalk({level: stderrColor ? stderrColor.level : 0});
80062
80074
  "use strict";
80063
80075
  __webpack_require__.r(__webpack_exports__);
80064
80076
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
80065
- /* harmony export */ "stringEncaseCRLFWithFirstIndex": () => (/* binding */ stringEncaseCRLFWithFirstIndex),
80066
- /* harmony export */ "stringReplaceAll": () => (/* binding */ stringReplaceAll)
80077
+ /* harmony export */ stringEncaseCRLFWithFirstIndex: () => (/* binding */ stringEncaseCRLFWithFirstIndex),
80078
+ /* harmony export */ stringReplaceAll: () => (/* binding */ stringReplaceAll)
80067
80079
  /* harmony export */ });
80068
80080
  // TODO: When targeting Node.js 16, use `String.prototype.replaceAll`.
80069
80081
  function stringReplaceAll(string, substring, replacer) {
@@ -80111,11 +80123,11 @@ function stringEncaseCRLFWithFirstIndex(string, prefix, postfix, index) {
80111
80123
  "use strict";
80112
80124
  __webpack_require__.r(__webpack_exports__);
80113
80125
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
80114
- /* harmony export */ "backgroundColorNames": () => (/* binding */ backgroundColorNames),
80115
- /* harmony export */ "colorNames": () => (/* binding */ colorNames),
80126
+ /* harmony export */ backgroundColorNames: () => (/* binding */ backgroundColorNames),
80127
+ /* harmony export */ colorNames: () => (/* binding */ colorNames),
80116
80128
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
80117
- /* harmony export */ "foregroundColorNames": () => (/* binding */ foregroundColorNames),
80118
- /* harmony export */ "modifierNames": () => (/* binding */ modifierNames)
80129
+ /* harmony export */ foregroundColorNames: () => (/* binding */ foregroundColorNames),
80130
+ /* harmony export */ modifierNames: () => (/* binding */ modifierNames)
80119
80131
  /* harmony export */ });
80120
80132
  const ANSI_BACKGROUND_OFFSET = 10;
80121
80133
 
@@ -80353,7 +80365,7 @@ const ansiStyles = assembleStyles();
80353
80365
  "use strict";
80354
80366
  __webpack_require__.r(__webpack_exports__);
80355
80367
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
80356
- /* harmony export */ "createSupportsColor": () => (/* binding */ createSupportsColor),
80368
+ /* harmony export */ createSupportsColor: () => (/* binding */ createSupportsColor),
80357
80369
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
80358
80370
  /* harmony export */ });
80359
80371
  /* harmony import */ var node_process__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! node:process */ "node:process");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.100.3",
3
+ "version": "2.100.5",
4
4
  "description": "abaplint - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -38,12 +38,12 @@
38
38
  },
39
39
  "homepage": "https://abaplint.org",
40
40
  "devDependencies": {
41
- "@abaplint/core": "^2.100.3",
41
+ "@abaplint/core": "^2.100.5",
42
42
  "@types/chai": "^4.3.5",
43
43
  "@types/glob": "^7.2.0",
44
44
  "@types/minimist": "^1.2.2",
45
45
  "@types/mocha": "^10.0.1",
46
- "@types/node": "^20.1.5",
46
+ "@types/node": "^20.2.1",
47
47
  "@types/progress": "^2.0.5",
48
48
  "chai": "^4.3.7",
49
49
  "chalk": "^5.2.0",
@@ -55,7 +55,7 @@
55
55
  "mocha": "^10.2.0",
56
56
  "progress": "^2.0.3",
57
57
  "typescript": "^5.0.4",
58
- "webpack": "^5.82.1",
58
+ "webpack": "^5.83.1",
59
59
  "webpack-cli": "^5.1.1",
60
60
  "xml-js": "^1.6.11"
61
61
  },