Skip to content

Commit 347d8f9

Browse files
committed
Actually, let's put this in the quarto-utils package
1 parent d082ba8 commit 347d8f9

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

apps/lsp/src/middleware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
import { Connection, ServerCapabilities } from "vscode-languageserver";
18-
import { QUARTO_SEMANTIC_TOKEN_LEGEND } from "quarto-core";
18+
import { QUARTO_SEMANTIC_TOKEN_LEGEND } from "quarto-utils";
1919

2020

2121
// capabilities provided just so we can intercept them w/ middleware on the client

apps/quarto-utils/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
*/
1515

1616
export * from './r-utils';
17+
export * from './semantic-tokens-legend';

apps/vscode/src/providers/semantic-tokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { DocumentSemanticsTokensSignature } from "vscode-languageclient";
2727
import { MarkdownEngine } from "../markdown/engine";
2828
import { isQuartoDoc } from "../core/doc";
2929
import { unadjustedSemanticTokens, virtualDoc, withVirtualDocUri } from "../vdoc/vdoc";
30-
import { QUARTO_SEMANTIC_TOKEN_LEGEND } from "quarto-core";
30+
import { QUARTO_SEMANTIC_TOKEN_LEGEND } from "quarto-utils";
3131

3232
/**
3333
* Decode semantic tokens from delta-encoded format to absolute positions

packages/quarto-core/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,3 @@ export * from './position';
2424
export * from './range';
2525
export * from './document';
2626
export * from './lsp';
27-
export * from './semantic-tokens-legend';

0 commit comments

Comments
 (0)