@sap/cds-lsp
Advanced tools
Comparing version 6.3.0 to 6.4.0
@@ -9,2 +9,13 @@ # Changelog | ||
## 6.4.0 - 2022-12-15 | ||
### Added | ||
- new formatting options `whitespaceBeforeColonInAnnotation` and `whitespaceAfterColonInAnnotation` for specific configuration in annotations | ||
### Changed | ||
- non-inline pre-annotations are now prefixed with an empty line to separate them from preceding elements | ||
### Also see | ||
- `@sap/cds-compiler` 3.5.0 | ||
## 6.3.0 - 2022-11-01 | ||
@@ -75,3 +86,3 @@ | ||
- support for new major cds-compiler 3.0.0 | ||
- new user setting `cds.workspaceSymbols.caseInsensitive` (default off) to search case insensitive | ||
- new user setting `cds.workspaceSymbols.caseInsensitive` (default off) to search case-insensitive | ||
- new user setting `cds.outline.semantical` (default off) to show outline in a rather semantical structure as opposed to a flat list | ||
@@ -223,3 +234,3 @@ - analyze dependencies now supports coloring of layers for monorepos | ||
- progress indication for initialization, configuration changed, references and workspace symbols | ||
- support for protocol:selectionRange (though, VSCode has a bug and does not considers it currently) | ||
- support for protocol:selectionRange (though, VSCode has a bug and does not consider it currently) | ||
@@ -230,3 +241,3 @@ ### Fixed | ||
- symlinks were not followed when scanning workspace | ||
- (speedup) indexes might got stale even model file hasn't changed | ||
- (speedup) indexes could've gone stale even model file hasn't changed | ||
@@ -308,5 +319,5 @@ ### Changed | ||
Additonal hints to increase performance: | ||
- Within _SAP Business Application Studio_: close `CAP Data Models and Services` view. Otherwise it will ask for all workspace symbols at every change. | ||
- Within _SAP Business Application Studio_: close `CAP Data Models and Services` view, otherwise it will ask for all workspace symbols at every change. | ||
- Settings: `Cds � Contributions � Enablement: Odata`: switch off as already mentioned above | ||
- Settings: `Editor � Goto Location: Alternative Definition Command`: do not select `goToReferences`. Otherwise being already on a definition will trigger find references which requires all dirty models to be recompiled. | ||
- Settings: `Editor � Goto Location: Alternative Definition Command`: do not select `goToReferences`, otherwise being already on a definition will trigger find references which requires all dirty models to be recompiled. | ||
- Settings: `Workbench � Editor � Limit: Enabled`: switch on | ||
@@ -613,3 +624,3 @@ - Settings: `Workbench � Editor � Limit: Value`: lower the number. If open editors have `using` dependencies, a change in one editor will lead to a recompile of releated editors. | ||
- formatting failed (seen in Eclipse, VSCode works) due to off-by-one error | ||
- global npm root for Business App Studio was not found with compiler.location option ProjectThenGlobalThenBuiltIn | ||
- global npm root for Business App Studio was not found with `compiler.location` option `ProjectThenGlobalThenBuiltIn` | ||
@@ -814,3 +825,3 @@ ## 3.1.4 - 2020-03-04 | ||
* consume cds-compiler 1.13.1 | ||
* performance improvements (less compilations and reduced memory footprint) | ||
* performance improvements (fewer compilations and reduced memory footprint) | ||
* Links to folders in using statement are now resolved | ||
@@ -883,4 +894,4 @@ | ||
* .cdsignore can be used to exclude paths from installation e.g. test folders with package.json files | ||
* In internal landscape within WebIDE it is now possible to use git-git-URLs to internal github in addition to https-git-URLs | ||
* In internal landscape within WebIDE it is now possible to use git-git-URLs to internal GitHub in addition to https-git-URLs | ||
* Compiler 1.3.0 | ||
* Trace now measures durations with high precision, includes compilation footprint (number of files and size of compiled sources) and shows memory changes |
@@ -114,3 +114,3 @@ import * as LSP from 'vscode-languageserver-protocol'; | ||
annoSubValue: keyof RelevantRuleNames; | ||
artifactDef: keyof RelevantRuleNames; | ||
artifactDefOrExtend: keyof RelevantRuleNames; | ||
cardinalityAndFilter: keyof RelevantRuleNames; | ||
@@ -123,2 +123,3 @@ condition: keyof RelevantRuleNames; | ||
elementDefOrExtend: keyof RelevantRuleNames; | ||
elementType: keyof RelevantRuleNames; | ||
entityDef: keyof RelevantRuleNames; | ||
@@ -130,3 +131,3 @@ expression: keyof RelevantRuleNames; | ||
flattenedValue: keyof RelevantRuleNames; | ||
innerUsing: keyof RelevantRuleNames; | ||
usingProxy: keyof RelevantRuleNames; | ||
mixinElementDef: keyof RelevantRuleNames; | ||
@@ -145,2 +146,3 @@ namedValue: keyof RelevantRuleNames; | ||
selectItemInlineList: keyof RelevantRuleNames; | ||
serviceDef: keyof RelevantRuleNames; | ||
tableExpression: keyof RelevantRuleNames; | ||
@@ -182,2 +184,3 @@ typeAssociationBase: keyof RelevantRuleNames; | ||
getFollowUpLineEndComment(): any; | ||
print(level: number, position: string): void; | ||
} | ||
@@ -198,2 +201,3 @@ export interface IPpRuleNode { | ||
toString(): string; | ||
print(level: number, position: string): void; | ||
} | ||
@@ -332,4 +336,2 @@ export declare type IPpChild = IPpRuleNode | IPpRuleToken; | ||
} | ||
// export const $lsp: CdsCompiler|undefined; // v2 | ||
// export function parse(source: FileContent, filename: AbsolutePath, options?: CdsvParseOptions): XsnParseModel; | ||
export interface CdsvSourceDictionary { | ||
@@ -364,5 +366,2 @@ [localPath: AbsolutePath]: FileContent; | ||
} | ||
// export interface XsnLocated { | ||
// location: XsnLocation; | ||
// } | ||
export interface XsnMessage { | ||
@@ -518,3 +517,3 @@ home?: string; | ||
/** | ||
* According grammar: extendContext 'service'|'context', extendEntity 'entity', extendProjection 'entity' ('projection'?), extendType 'type', extendAspect 'aspect', extendArtifact undefined, extendElement 'element'|undefined | ||
* According grammar: extendContext 'context', extendService 'service', extendEntityOrAspect 'entity', extendProjection 'entity' ('projection'?), extendType 'type', extendAspect 'aspect', extendArtifact undefined, extendElement 'element'|undefined | ||
* | ||
@@ -521,0 +520,0 @@ * → Note: expectedKind is ONLY set if the source explicitly states it e.g. 'extend entity E' instead of 'extend E' !!! |
@@ -736,3 +736,3 @@ import { BigIntStats, Dirent, PathLike, StatOptions, Stats, WriteFileOptions } from 'fs'; | ||
annoSubValue: keyof RelevantRuleNames; | ||
artifactDef: keyof RelevantRuleNames; | ||
artifactDefOrExtend: keyof RelevantRuleNames; | ||
cardinalityAndFilter: keyof RelevantRuleNames; | ||
@@ -745,2 +745,3 @@ condition: keyof RelevantRuleNames; | ||
elementDefOrExtend: keyof RelevantRuleNames; | ||
elementType: keyof RelevantRuleNames; | ||
entityDef: keyof RelevantRuleNames; | ||
@@ -752,3 +753,3 @@ expression: keyof RelevantRuleNames; | ||
flattenedValue: keyof RelevantRuleNames; | ||
innerUsing: keyof RelevantRuleNames; | ||
usingProxy: keyof RelevantRuleNames; | ||
mixinElementDef: keyof RelevantRuleNames; | ||
@@ -767,2 +768,3 @@ namedValue: keyof RelevantRuleNames; | ||
selectItemInlineList: keyof RelevantRuleNames; | ||
serviceDef: keyof RelevantRuleNames; | ||
tableExpression: keyof RelevantRuleNames; | ||
@@ -804,2 +806,3 @@ typeAssociationBase: keyof RelevantRuleNames; | ||
getFollowUpLineEndComment(): any; | ||
print(level: number, position: string): void; | ||
} | ||
@@ -820,2 +823,3 @@ export interface IPpRuleNode { | ||
toString(): string; | ||
print(level: number, position: string): void; | ||
} | ||
@@ -954,4 +958,2 @@ export declare type IPpChild = IPpRuleNode | IPpRuleToken; | ||
} | ||
// export const $lsp: CdsCompiler|undefined; // v2 | ||
// export function parse(source: FileContent, filename: AbsolutePath, options?: CdsvParseOptions): XsnParseModel; | ||
export interface CdsvSourceDictionary { | ||
@@ -986,5 +988,2 @@ [localPath: AbsolutePath]: FileContent; | ||
} | ||
// export interface XsnLocated { | ||
// location: XsnLocation; | ||
// } | ||
export interface XsnMessage { | ||
@@ -1140,3 +1139,3 @@ home?: string; | ||
/** | ||
* According grammar: extendContext 'service'|'context', extendEntity 'entity', extendProjection 'entity' ('projection'?), extendType 'type', extendAspect 'aspect', extendArtifact undefined, extendElement 'element'|undefined | ||
* According grammar: extendContext 'context', extendService 'service', extendEntityOrAspect 'entity', extendProjection 'entity' ('projection'?), extendType 'type', extendAspect 'aspect', extendArtifact undefined, extendElement 'element'|undefined | ||
* | ||
@@ -1477,3 +1476,9 @@ * → Note: expectedKind is ONLY set if the source explicitly states it e.g. 'extend entity E' instead of 'extend E' !!! | ||
whitespaceBeforeColon: MetaOption<unknown>; | ||
whitespaceBeforeColonInAnnotation: MetaOption<{ | ||
whitespaceBeforeColon: any; | ||
}>; | ||
whitespaceAfterColon: MetaOption<unknown>; | ||
whitespaceAfterColonInAnnotation: MetaOption<{ | ||
whitespaceAfterColon: any; | ||
}>; | ||
whitespaceAfterComma: MetaOption<unknown>; | ||
@@ -1480,0 +1485,0 @@ whitespaceAroundAlignedOps: MetaOption<unknown>; |
@@ -63,6 +63,8 @@ ## Code Formatting | ||
| whitespaceBeforeColon | true | Use blank to separate item from following _colon_ | | | ||
| whitespaceBeforeColonInAnnotation | false | Use blank to separate key and _colon_ in _annotations_ | whitespaceBeforeColon | | ||
| whitespaceAfterColon | true | Use blank to separate _colon_ from following item | | | ||
| whitespaceAfterColonInAnnotation | true | Use blank to separate _colon_ and value in _annotations_ | whitespaceAfterColon | | ||
| whitespaceAfterComma | true | Use blank to separate _comma_ from following item | | | ||
| whitespaceAroundAlignedOps | true | Use blank before and after aligned _binary operators_ and _colons_ | | | ||
| whitespaceAroundAlignedOps | true | Use blank before and after aligned _binary operators_ and _colons_ (except colons in annotations) | | | ||
| whitespaceAroundBinaryOps | true | Use blank before and after _binary operators_ | | | ||
| whitespaceWithinBrackets | false | Use blank after opening and before closing _brackets_ `{} [] ()` | | |
@@ -38,28 +38,28 @@ # Installation | ||
``` | ||
#!/bin/bash | ||
componentName=cds-lsp | ||
fullName="@sap/$componentName" | ||
``` | ||
#!/bin/bash | ||
componentName=cds-lsp | ||
fullName="@sap/$componentName" | ||
echo '=== Getting latest download URL' | ||
url=$(npm view $fullName | sed -n 's/.tarball.*\(https.*\)$/\1/p') | ||
echo "=== Downloading $url" | ||
curl -O $url | ||
filename=$(echo $url | sed -n 's/.*\/\(.*\)$/\1/p') | ||
echo "=== Extracting $filename" | ||
tar xfv $filename | ||
mv package $componentName | ||
echo "=== Removing $filename" | ||
rm $filename | ||
cd $componentName | ||
echo "=== Installing dependencies" | ||
npm i | ||
``` | ||
echo '=== Getting latest download URL' | ||
url=$(npm view $fullName | sed -n 's/.tarball.*\(https.*\)$/\1/p') | ||
echo "=== Downloading $url" | ||
curl -O $url | ||
filename=$(echo $url | sed -n 's/.*\/\(.*\)$/\1/p') | ||
echo "=== Extracting $filename" | ||
tar xfv $filename | ||
mv package $componentName | ||
echo "=== Removing $filename" | ||
rm $filename | ||
cd $componentName | ||
echo "=== Installing dependencies" | ||
npm i | ||
``` | ||
2. start the server using _stdio_ | ||
``` | ||
#!/bin/bash | ||
main=$(cat cds-lsp/package.json | sed -n 's/.*"main".*"\(.*\)".*/\1/p') | ||
node "cds-lsp/$main" --stdio | ||
``` | ||
``` | ||
#!/bin/bash | ||
main=$(cat cds-lsp/package.json | sed -n 's/.*"main".*"\(.*\)".*/\1/p') | ||
node "cds-lsp/$main" --stdio | ||
``` | ||
@@ -66,0 +66,0 @@ |
{ | ||
"name": "@sap/cds-lsp", | ||
"version": "6.3.0", | ||
"version": "6.4.0", | ||
"lockfileVersion": 2, | ||
@@ -9,6 +9,6 @@ "requires": true, | ||
"name": "@sap/cds-lsp", | ||
"version": "6.3.0", | ||
"version": "6.4.0", | ||
"dependencies": { | ||
"@sap/cds-compiler": "3.4.0", | ||
"ignore": "5.2.0", | ||
"@sap/cds-compiler": "3.5.0", | ||
"ignore": "5.2.1", | ||
"json-source-map": "0.6.1", | ||
@@ -20,10 +20,9 @@ "remark": "13.0.0", | ||
"vscode-languageserver-protocol": "3.17.2", | ||
"vscode-languageserver-textdocument": "1.0.7" | ||
"vscode-languageserver-textdocument": "1.0.8" | ||
} | ||
}, | ||
"node_modules/@sap/cds-compiler": { | ||
"version": "3.4.0", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/@sap/cds-compiler/-/@sap/cds-compiler-3.4.0.tgz", | ||
"integrity": "sha512-jfEteNx4ZlGo+z2wB5nY1b42GEN/qbUFR7GItXYNOhOnN+fLKzjHf4FzPjBINs1rPznLLCrAPKrX5qmX71wEbQ==", | ||
"license": "SEE LICENSE IN LICENSE", | ||
"version": "3.5.0", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/@sap/cds-compiler/-/@sap/cds-compiler-3.5.0.tgz", | ||
"integrity": "sha512-gRtOQGuGInuB4oaO4HqE70BDkgMsuJHRq3N305/LVAA1p93j91Bpsqk1DUtd4tcyYgx4HF4xbzoZUr5u1+vIuw==", | ||
"dependencies": { | ||
@@ -45,3 +44,2 @@ "antlr4": "4.9.3" | ||
"integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -54,4 +52,3 @@ "@types/unist": "*" | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/@types/unist/-/unist-2.0.6.tgz", | ||
"integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", | ||
"license": "MIT" | ||
"integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" | ||
}, | ||
@@ -62,3 +59,2 @@ "node_modules/antlr4": { | ||
"integrity": "sha512-qNy2odgsa0skmNMCuxzXhM4M8J1YDaPv3TI+vCdnOAanu0N982wBrSqziDKRDctEZLZy9VffqIZXc0UGjjSP/g==", | ||
"license": "BSD-3-Clause", | ||
"engines": { | ||
@@ -71,8 +67,3 @@ "node": ">=14" | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/bail/-/bail-1.0.5.tgz", | ||
"integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" | ||
}, | ||
@@ -82,8 +73,3 @@ "node_modules/ccount": { | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/ccount/-/ccount-1.1.0.tgz", | ||
"integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==" | ||
}, | ||
@@ -93,8 +79,3 @@ "node_modules/character-entities": { | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/character-entities/-/character-entities-1.2.4.tgz", | ||
"integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==" | ||
}, | ||
@@ -104,8 +85,3 @@ "node_modules/character-entities-legacy": { | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", | ||
"integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==" | ||
}, | ||
@@ -115,8 +91,3 @@ "node_modules/character-reference-invalid": { | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", | ||
"integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==" | ||
}, | ||
@@ -127,3 +98,2 @@ "node_modules/debug": { | ||
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -145,8 +115,4 @@ "ms": "2.1.2" | ||
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=10" | ||
}, | ||
"funding": { | ||
"url": "https://github.com/sponsors/sindresorhus" | ||
} | ||
@@ -157,10 +123,8 @@ }, | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/extend/-/extend-3.0.2.tgz", | ||
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", | ||
"license": "MIT" | ||
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" | ||
}, | ||
"node_modules/ignore": { | ||
"version": "5.2.0", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/ignore/-/ignore-5.2.0.tgz", | ||
"integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", | ||
"license": "MIT", | ||
"version": "5.2.1", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/ignore/-/ignore-5.2.1.tgz", | ||
"integrity": "sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==", | ||
"engines": { | ||
@@ -173,8 +137,3 @@ "node": ">= 4" | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/is-alphabetical/-/is-alphabetical-1.0.4.tgz", | ||
"integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" | ||
}, | ||
@@ -185,10 +144,5 @@ "node_modules/is-alphanumerical": { | ||
"integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"is-alphabetical": "^1.0.0", | ||
"is-decimal": "^1.0.0" | ||
}, | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
@@ -200,17 +154,2 @@ }, | ||
"integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", | ||
"funding": [ | ||
{ | ||
"type": "github", | ||
"url": "https://github.com/sponsors/feross" | ||
}, | ||
{ | ||
"type": "patreon", | ||
"url": "https://www.patreon.com/feross" | ||
}, | ||
{ | ||
"type": "consulting", | ||
"url": "https://feross.org/support" | ||
} | ||
], | ||
"license": "MIT", | ||
"engines": { | ||
@@ -223,8 +162,3 @@ "node": ">=4" | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/is-decimal/-/is-decimal-1.0.4.tgz", | ||
"integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==" | ||
}, | ||
@@ -234,8 +168,3 @@ "node_modules/is-hexadecimal": { | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", | ||
"integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==" | ||
}, | ||
@@ -246,3 +175,2 @@ "node_modules/is-plain-obj": { | ||
"integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", | ||
"license": "MIT", | ||
"engines": { | ||
@@ -255,4 +183,3 @@ "node": ">=8" | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/json-source-map/-/json-source-map-0.6.1.tgz", | ||
"integrity": "sha512-1QoztHPsMQqhDq0hlXY5ZqcEdUzxQEIxgFkKl4WUp2pgShObl+9ovi4kRh2TfvAfxAoHOJ9vIMEqk3k4iex7tg==", | ||
"license": "MIT" | ||
"integrity": "sha512-1QoztHPsMQqhDq0hlXY5ZqcEdUzxQEIxgFkKl4WUp2pgShObl+9ovi4kRh2TfvAfxAoHOJ9vIMEqk3k4iex7tg==" | ||
}, | ||
@@ -262,8 +189,3 @@ "node_modules/longest-streak": { | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/longest-streak/-/longest-streak-2.0.4.tgz", | ||
"integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==" | ||
}, | ||
@@ -274,9 +196,4 @@ "node_modules/markdown-table": { | ||
"integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"repeat-string": "^1.0.0" | ||
}, | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
@@ -288,3 +205,2 @@ }, | ||
"integrity": "sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -294,6 +210,2 @@ "escape-string-regexp": "^4.0.0", | ||
"unist-util-visit-parents": "^3.0.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -305,3 +217,2 @@ }, | ||
"integrity": "sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -313,6 +224,2 @@ "@types/mdast": "^3.0.0", | ||
"unist-util-stringify-position": "^2.0.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -324,3 +231,2 @@ }, | ||
"integrity": "sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -332,6 +238,2 @@ "mdast-util-gfm-autolink-literal": "^0.1.0", | ||
"mdast-util-to-markdown": "^0.6.1" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -343,3 +245,2 @@ }, | ||
"integrity": "sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -349,6 +250,2 @@ "ccount": "^1.0.0", | ||
"micromark": "^2.11.3" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -360,9 +257,4 @@ }, | ||
"integrity": "sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"mdast-util-to-markdown": "^0.6.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -374,10 +266,5 @@ }, | ||
"integrity": "sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"markdown-table": "^2.0.0", | ||
"mdast-util-to-markdown": "~0.6.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -389,9 +276,4 @@ }, | ||
"integrity": "sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"mdast-util-to-markdown": "~0.6.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -403,3 +285,2 @@ }, | ||
"integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -412,6 +293,2 @@ "@types/unist": "^2.0.0", | ||
"zwitch": "^1.0.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -422,8 +299,3 @@ }, | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", | ||
"integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
"integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==" | ||
}, | ||
@@ -434,13 +306,2 @@ "node_modules/micromark": { | ||
"integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==", | ||
"funding": [ | ||
{ | ||
"type": "GitHub Sponsors", | ||
"url": "https://github.com/sponsors/unifiedjs" | ||
}, | ||
{ | ||
"type": "OpenCollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
], | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -455,3 +316,2 @@ "debug": "^4.0.0", | ||
"integrity": "sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -464,6 +324,2 @@ "micromark": "~2.11.0", | ||
"micromark-extension-gfm-task-list-item": "~0.3.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -475,9 +331,4 @@ }, | ||
"integrity": "sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"micromark": "~2.11.3" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -489,9 +340,4 @@ }, | ||
"integrity": "sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"micromark": "~2.11.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -503,9 +349,4 @@ }, | ||
"integrity": "sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"micromark": "~2.11.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -516,8 +357,3 @@ }, | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-0.3.0.tgz", | ||
"integrity": "sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
"integrity": "sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==" | ||
}, | ||
@@ -528,9 +364,4 @@ "node_modules/micromark-extension-gfm-task-list-item": { | ||
"integrity": "sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"micromark": "~2.11.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -541,4 +372,3 @@ }, | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/ms/-/ms-2.1.2.tgz", | ||
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", | ||
"license": "MIT" | ||
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" | ||
}, | ||
@@ -549,3 +379,2 @@ "node_modules/parse-entities": { | ||
"integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -558,6 +387,2 @@ "character-entities": "^1.0.0", | ||
"is-hexadecimal": "^1.0.0" | ||
}, | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
@@ -569,3 +394,2 @@ }, | ||
"integrity": "sha512-HDz1+IKGtOyWN+QgBiAT0kn+2s6ovOxHyPAFGKVE81VSzJ+mq7RwHFledEvB5F1p4iJvOah/LOKdFuzvRnNLCA==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -575,6 +399,2 @@ "remark-parse": "^9.0.0", | ||
"unified": "^9.1.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -586,10 +406,5 @@ }, | ||
"integrity": "sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"mdast-util-gfm": "^0.1.0", | ||
"micromark-extension-gfm": "^0.3.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -601,9 +416,4 @@ }, | ||
"integrity": "sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"mdast-util-from-markdown": "^0.8.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -615,9 +425,4 @@ }, | ||
"integrity": "sha512-mWmNg3ZtESvZS8fv5PTvaPckdL4iNlCHTt8/e/8oN08nArHRHjNZMKzA/YW3+p7/lYqIw4nx1XsjCBo/AxNChg==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"mdast-util-to-markdown": "^0.6.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -629,3 +434,2 @@ }, | ||
"integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", | ||
"license": "MIT", | ||
"engines": { | ||
@@ -638,4 +442,3 @@ "node": ">=0.10" | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz", | ||
"integrity": "sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==", | ||
"license": "MIT" | ||
"integrity": "sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==" | ||
}, | ||
@@ -645,8 +448,3 @@ "node_modules/trough": { | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/trough/-/trough-1.0.5.tgz", | ||
"integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" | ||
}, | ||
@@ -657,3 +455,2 @@ "node_modules/unified": { | ||
"integrity": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -666,6 +463,2 @@ "bail": "^1.0.0", | ||
"vfile": "^4.0.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -676,8 +469,3 @@ }, | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/unist-util-is/-/unist-util-is-4.1.0.tgz", | ||
"integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
"integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==" | ||
}, | ||
@@ -688,9 +476,4 @@ "node_modules/unist-util-stringify-position": { | ||
"integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@types/unist": "^2.0.2" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -702,10 +485,5 @@ }, | ||
"integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@types/unist": "^2.0.0", | ||
"unist-util-is": "^4.0.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -717,3 +495,2 @@ }, | ||
"integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -724,6 +501,2 @@ "@types/unist": "^2.0.0", | ||
"vfile-message": "^2.0.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -735,10 +508,5 @@ }, | ||
"integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@types/unist": "^2.0.0", | ||
"unist-util-stringify-position": "^2.0.0" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/unified" | ||
} | ||
@@ -750,3 +518,2 @@ }, | ||
"integrity": "sha512-RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ==", | ||
"license": "MIT", | ||
"engines": { | ||
@@ -760,3 +527,2 @@ "node": ">=14.0.0" | ||
"integrity": "sha512-bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -773,3 +539,2 @@ "vscode-languageserver-protocol": "3.17.2" | ||
"integrity": "sha512-8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg==", | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -781,6 +546,5 @@ "vscode-jsonrpc": "8.0.2", | ||
"node_modules/vscode-languageserver-textdocument": { | ||
"version": "1.0.7", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.7.tgz", | ||
"integrity": "sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==", | ||
"license": "MIT" | ||
"version": "1.0.8", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz", | ||
"integrity": "sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==" | ||
}, | ||
@@ -790,4 +554,3 @@ "node_modules/vscode-languageserver-types": { | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/vscode-languageserver-types/-/vscode-languageserver-types-3.17.2.tgz", | ||
"integrity": "sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==", | ||
"license": "MIT" | ||
"integrity": "sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==" | ||
}, | ||
@@ -797,8 +560,3 @@ "node_modules/zwitch": { | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/zwitch/-/zwitch-1.0.5.tgz", | ||
"integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", | ||
"license": "MIT", | ||
"funding": { | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wooorm" | ||
} | ||
"integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==" | ||
} | ||
@@ -808,5 +566,5 @@ }, | ||
"@sap/cds-compiler": { | ||
"version": "3.4.0", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/@sap/cds-compiler/-/@sap/cds-compiler-3.4.0.tgz", | ||
"integrity": "sha512-jfEteNx4ZlGo+z2wB5nY1b42GEN/qbUFR7GItXYNOhOnN+fLKzjHf4FzPjBINs1rPznLLCrAPKrX5qmX71wEbQ==", | ||
"version": "3.5.0", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/@sap/cds-compiler/-/@sap/cds-compiler-3.5.0.tgz", | ||
"integrity": "sha512-gRtOQGuGInuB4oaO4HqE70BDkgMsuJHRq3N305/LVAA1p93j91Bpsqk1DUtd4tcyYgx4HF4xbzoZUr5u1+vIuw==", | ||
"requires": { | ||
@@ -878,5 +636,5 @@ "antlr4": "4.9.3" | ||
"ignore": { | ||
"version": "5.2.0", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/ignore/-/ignore-5.2.0.tgz", | ||
"integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" | ||
"version": "5.2.1", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/ignore/-/ignore-5.2.1.tgz", | ||
"integrity": "sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==" | ||
}, | ||
@@ -1227,5 +985,5 @@ "is-alphabetical": { | ||
"vscode-languageserver-textdocument": { | ||
"version": "1.0.7", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.7.tgz", | ||
"integrity": "sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==" | ||
"version": "1.0.8", | ||
"resolved": "https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz", | ||
"integrity": "sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==" | ||
}, | ||
@@ -1232,0 +990,0 @@ "vscode-languageserver-types": { |
{ | ||
"name": "@sap/cds-lsp", | ||
"description": "Language server for CDS", | ||
"version": "6.3.0", | ||
"version": "6.4.0", | ||
"homepage": "https://cap.cloud.sap/", | ||
@@ -39,4 +39,4 @@ "author": "SAP SE (https://www.sap.com)", | ||
"dependencies": { | ||
"@sap/cds-compiler": "3.4.0", | ||
"ignore": "5.2.0", | ||
"@sap/cds-compiler": "3.5.0", | ||
"ignore": "5.2.1", | ||
"json-source-map": "0.6.1", | ||
@@ -48,4 +48,4 @@ "remark": "13.0.0", | ||
"vscode-languageserver-protocol": "3.17.2", | ||
"vscode-languageserver-textdocument": "1.0.7" | ||
"vscode-languageserver-textdocument": "1.0.8" | ||
} | ||
} |
#!/usr/bin/env node | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const {formatCli} = require('../dist/index.js'); | ||
formatCli(); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2018511
7704
+ Added@sap/cds-compiler@3.5.0(transitive)
+ Addedignore@5.2.1(transitive)
+ Addedvscode-languageserver-textdocument@1.0.8(transitive)
- Removed@sap/cds-compiler@3.4.0(transitive)
- Removedignore@5.2.0(transitive)
- Removedvscode-languageserver-textdocument@1.0.7(transitive)
Updated@sap/cds-compiler@3.5.0
Updatedignore@5.2.1