We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
roughly.path
1 parent a9b0f0c commit fa9482aCopy full SHA for fa9482a
client/package.json
@@ -73,9 +73,12 @@
73
"properties": {
74
"roughly.path": {
75
"scope": "resource",
76
- "type": "string",
+ "type": [
77
+ "string",
78
+ "null"
79
+ ],
80
"format": "path",
- "default": "roughly",
81
+ "default": null,
82
"markdownDescription": "Location of the `roughly` executable, e.g., `[\"/path/to/roughly\"]`."
83
},
84
"roughly.args": {
justfile
@@ -24,8 +24,8 @@ vsce *args:
24
# BUILD
25
#
26
27
-install-extension $version:
28
- code --install-extension client/roughly-*.vsix --force
+install-extension $path:
+ code --install-extension {{path}}
29
30
build-linux:
31
cargo build --release --target x86_64-unknown-linux-gnu
0 commit comments