First release

This commit is contained in:
Shibo Lyu 2020-10-31 14:30:33 +00:00
commit fbc46d8f4b
17 changed files with 3131 additions and 0 deletions

1
SvelteNova.novaextension/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.DS_Store

File diff suppressed because it is too large Load diff

View 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"
}
]
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,7 @@
{
"name": "sveltenova.novaextension",
"version": "0.1.0",
"dependencies": {
"svelte-language-server": "^0.10.147"
}
}

View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
cd "$WORKDIR"
"$SVELTE_SERVER" --stdio