@canonical/terrazzo-lsp 0.2.0 → 0.3.0
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/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Language server providing CSS custom property intelligence for design token work
|
|
|
22
22
|
```bash
|
|
23
23
|
bun run build:all
|
|
24
24
|
npm install -D @canonical/design-tokens
|
|
25
|
-
npx terrazzo-lsp install vscode
|
|
25
|
+
npx @canonical/terrazzo-lsp install vscode
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
The `terrazzo-lsp` command is re-exported by `@canonical/design-tokens`, so
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@canonical/terrazzo-lsp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Language server providing CSS custom property intelligence for design token workflows. Includes completions, hover, diagnostics, go-to-definition, rename, document colours, and workspace symbols.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "LGPL-3.0",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"extension/terrazzo-lsp-*.vsix"
|
|
40
40
|
],
|
|
41
41
|
"scripts": {
|
|
42
|
-
"build": "bun run build:tsc",
|
|
43
|
-
"build:all": "bun run build
|
|
42
|
+
"build": "bun run build:tsc && bun run build:extension",
|
|
43
|
+
"build:all": "bun run build",
|
|
44
44
|
"build:tsc": "tsc -p tsconfig.build.json",
|
|
45
45
|
"build:extension": "cd extension && bun run package",
|
|
46
46
|
"check": "bun run check:biome && bun run check:ts && bun run check:webarchitect",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"test:coverage": "vitest run --coverage"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@canonical/token-types": "^0.
|
|
57
|
+
"@canonical/token-types": "^0.3.0",
|
|
58
58
|
"@lezer/common": "^1.3.0",
|
|
59
59
|
"@lezer/css": "^1.3.0",
|
|
60
60
|
"colorjs.io": "^0.6.1"
|