mirror of
https://github.com/laosb/SvelteNova.git
synced 2025-07-08 12:15:34 +00:00
First release
This commit is contained in:
commit
fbc46d8f4b
17 changed files with 3131 additions and 0 deletions
1
SvelteNova.novaextension/.gitignore
vendored
Normal file
1
SvelteNova.novaextension/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.DS_Store
|
1373
SvelteNova.novaextension/Syntaxes/Svelte.xml
Normal file
1373
SvelteNova.novaextension/Syntaxes/Svelte.xml
Normal file
File diff suppressed because it is too large
Load diff
46
SvelteNova.novaextension/extension.json
Normal file
46
SvelteNova.novaextension/extension.json
Normal file
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"identifier": "sb.lao.svelte-nova",
|
||||
"name": "Svelte",
|
||||
"organization": "Shibo Lyu",
|
||||
"description": "LSP support for Svelte.",
|
||||
"version": "0.1",
|
||||
"categories": ["languages"],
|
||||
"bugs": "https://github.com/laosb/SvelteNova/issues",
|
||||
"repository": "https://github.com/laosb/SvelteNova",
|
||||
"min_runtime": "2.0",
|
||||
|
||||
"main": "main.js",
|
||||
|
||||
"entitlements": {
|
||||
"process": true,
|
||||
"filesystem": "readwrite"
|
||||
},
|
||||
|
||||
"activationEvents": ["onLanguage:svelte"],
|
||||
|
||||
"config": [
|
||||
{
|
||||
"key": "sb.lao.svelte-nova.language-server-path",
|
||||
"title": "Svelte Language Server Path",
|
||||
"type": "path",
|
||||
"placeholder": "some /node_modules/.bin/svelteserver"
|
||||
}
|
||||
],
|
||||
|
||||
"commands": {
|
||||
"extensions": [
|
||||
{
|
||||
"title": "Preferences",
|
||||
"command": "sb.lao.svelte-nova.commands.openWorkspaceConfig"
|
||||
},
|
||||
{
|
||||
"title": "Reload extension",
|
||||
"command": "sb.lao.svelte-nova.commands.reload"
|
||||
},
|
||||
{
|
||||
"title": "Force Unlock Dependency Installation",
|
||||
"command": "sb.lao.svelte-nova.commands.forceClearLock"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
BIN
SvelteNova.novaextension/extension.png
Normal file
BIN
SvelteNova.novaextension/extension.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
1255
SvelteNova.novaextension/npm-shrinkwrap.json
generated
Normal file
1255
SvelteNova.novaextension/npm-shrinkwrap.json
generated
Normal file
File diff suppressed because it is too large
Load diff
7
SvelteNova.novaextension/package.json
Normal file
7
SvelteNova.novaextension/package.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"name": "sveltenova.novaextension",
|
||||
"version": "0.1.0",
|
||||
"dependencies": {
|
||||
"svelte-language-server": "^0.10.147"
|
||||
}
|
||||
}
|
5
SvelteNova.novaextension/run.sh
Executable file
5
SvelteNova.novaextension/run.sh
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
cd "$WORKDIR"
|
||||
|
||||
"$SVELTE_SERVER" --stdio
|
Loading…
Add table
Add a link
Reference in a new issue