forked from OCamlPro/superbol-studio-oss
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skeleton of extension in JS with VSCode binding from ocaml-platform
- Loading branch information
Showing
31 changed files
with
6,158 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
/node-js-stubs | ||
/vscode-js-stubs | ||
/vscode-languageclient-js-stubs | ||
/package-json | ||
*~ | ||
_build | ||
.merlin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// A launch configuration that launches the extension inside a new window | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Extension", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"outFiles": [ | ||
"${workspaceRoot}/_build/default/src/superbol-vscode-extension/superbol_vscode_extension.bc.js" | ||
], | ||
"args": [ | ||
"--disable-extensions", | ||
"--extensionDevelopmentPath=${workspaceFolder}" | ||
] | ||
}, | ||
{ | ||
"name": "Extension (no disable-extensions)", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"outFiles": [ | ||
"${workspaceRoot}/_build/default/src/superbol-vscode-extension/superbol_vscode_extension.bc.js" | ||
], | ||
"args": ["--extensionDevelopmentPath=${workspaceFolder}"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "shell", | ||
"command": "dune build @vscode -w", | ||
"label": "dune build @vscode -w", | ||
"problemMatcher": "$ocamlc", | ||
"presentation": { | ||
"reveal": "never" | ||
}, | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
** | ||
!assets/ | ||
!dist/ | ||
!languages/ | ||
!snippets/ | ||
!syntaxes/ | ||
!README.md | ||
!CHANGELOG.md | ||
!LICENSE | ||
!package.json | ||
!astexplorer/dist/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[project] | ||
drom-version = "0.1" | ||
share-repo = "https://github.com/OCamlPro/drom-share" | ||
share-version = "branch:local:z-2023-03-15-version-0.9.2" | ||
share-version = "0.9.2" | ||
|
||
[project] | ||
authors = ["Fabrice Le Fessant <[email protected]>"] | ||
|
@@ -51,7 +51,7 @@ for-test = true | |
[project] | ||
|
||
# dirs to skip while scanning for dune files | ||
skip-dirs = [ "node_modules" ] | ||
skip-dirs = ["node_modules"] | ||
|
||
# dirs to scan for share/ folders (with package names) | ||
share-dirs = ["share"] | ||
|
@@ -87,21 +87,25 @@ dir = "src/superbol-vscode-extension" | |
|
||
[[package]] | ||
dir = "src/polka-js-stubs" | ||
# edit 'src/superbol-vscode-extension/package.toml' for package-specific options | ||
# edit 'src/polka-js-stubs/package.toml' for package-specific options | ||
|
||
[[package]] | ||
dir = "src/interop-js-stubs" | ||
# edit 'src/superbol-vscode-extension/package.toml' for package-specific options | ||
# edit 'src/interop-js-stubs/package.toml' for package-specific options | ||
|
||
[[package]] | ||
dir = "src/node-js-stubs" | ||
# edit 'src/superbol-vscode-extension/package.toml' for package-specific options | ||
# edit 'src/node-js-stubs/package.toml' for package-specific options | ||
|
||
[[package]] | ||
dir = "src/vscode-js-stubs" | ||
# edit 'src/superbol-vscode-extension/package.toml' for package-specific options | ||
# edit 'src/vscode-js-stubs/package.toml' for package-specific options | ||
|
||
[[package]] | ||
dir = "src/vscode-languageclient-js-stubs" | ||
# edit 'src/superbol-vscode-extension/package.toml' for package-specific options | ||
# edit 'src/vscode-languageclient-js-stubs/package.toml' for package-specific options | ||
|
||
[[package]] | ||
dir = "src/package-json" | ||
# edit 'src/package-json/package.toml' for package-specific options | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.