Skip to content

Commit

Permalink
chore: bump scss-sassdoc-parser (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
wkillerud authored Feb 8, 2024
1 parent 4eb0111 commit 1cf9e61
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 145 deletions.
1 change: 0 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"extends": ["config:recommended"],
"schedule": ["on the first day of the month"],
"dependencyDashboard": false,
"ignoreDeps": ["scss-sassdoc-parser"],
"packageRules": [
{
"groupName": "linters",
Expand Down
66 changes: 10 additions & 56 deletions server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"colorjs.io": "^0.4.2",
"fast-glob": "^3.2.11",
"scss-sassdoc-parser": "^1.0.0",
"scss-sassdoc-parser": "^3.0.1",
"scss-symbols-parser": "^2.0.1",
"vscode-css-languageservice": "^6.2.12",
"vscode-languageserver": "^9.0.1",
Expand Down
4 changes: 2 additions & 2 deletions server/src/parser/parser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseString, type ParseResult } from "scss-sassdoc-parser";
import { parse, type ParseResult } from "scss-sassdoc-parser";
import {
Position,
Range,
Expand Down Expand Up @@ -218,7 +218,7 @@ async function findDocumentSymbols(

let sassdoc: ParseResult[] = [];
try {
sassdoc = await parseString(text);
sassdoc = await parse(text);
} catch (error) {
console.error((error as Error).message);
}
Expand Down
85 changes: 0 additions & 85 deletions server/types/scss-comment-parser.d.ts

This file was deleted.

0 comments on commit 1cf9e61

Please sign in to comment.