forked from ocamllabs/vscode-ocaml-platform
-
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.
Merge remote-tracking branch 'origin/master' into feat/add-reason-to-…
…ast-n-pp * origin/master: (27 commits) flake.lock: Update (ocamllabs#1707) Lock file maintenance Bump typescript from 5.7.2 to 5.7.3 (ocamllabs#1706) flake.lock: Update (ocamllabs#1703) Bump @types/node from 22.10.4 to 22.10.5 (ocamllabs#1702) Bump @types/node from 22.10.3 to 22.10.4 (ocamllabs#1701) Update bindings (ocamllabs#1698) Bump @types/node from 22.10.2 to 22.10.3 (ocamllabs#1700) Update Makefile Lock file maintenance Update GitHub Actions workflow Update Yarn to 4.6.0 flake.lock: Update (ocamllabs#1699) Prepare 1.26.1 (ocamllabs#1697) Display message instead of empty list (ocamllabs#1695) fix bug (ocamllabs#1694) flake.lock: Update (ocamllabs#1693) Bump esbuild from 0.24.1 to 0.24.2 (ocamllabs#1692) Bump esbuild from 0.24.0 to 0.24.1 (ocamllabs#1691) Bump parcel from 2.13.2 to 2.13.3 (ocamllabs#1690) ...
- Loading branch information
Showing
19 changed files
with
1,050 additions
and
804 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,16 +1,6 @@ | ||
const fs = require("node:fs"); | ||
const { promisify } = require("node:util"); | ||
|
||
joo_global_object.fs = { | ||
readDir: promisify(fs.readdir), | ||
readFile: promisify(fs.readFile), | ||
exists: promisify(fs.exists), | ||
}; | ||
|
||
joo_global_object.child_process = require("node:child_process"); | ||
|
||
joo_global_object.path = require("node:path"); | ||
|
||
joo_global_object.os = require("node:os"); | ||
|
||
joo_global_object.net = require("node:net"); | ||
globalThis.child_process = require("node:child_process"); | ||
globalThis.constants = require("node:constants"); | ||
globalThis.fs = require("node:fs/promises"); | ||
globalThis.net = require("node:net"); | ||
globalThis.os = require("node:os"); | ||
globalThis.path = require("node:path"); |
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,2 +1,2 @@ | ||
joo_global_object.polka = require("polka"); | ||
joo_global_object.sirv = require("sirv"); | ||
globalThis.polka = require("polka"); | ||
globalThis.sirv = require("sirv"); |
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 +1 @@ | ||
joo_global_object.vscode = require("vscode"); | ||
globalThis.vscode = require("vscode"); |
2 changes: 1 addition & 1 deletion
2
src-bindings/vscode_languageclient/vscode_languageclient_stub.js
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 +1 @@ | ||
joo_global_object.vscode_languageclient = require("vscode-languageclient"); | ||
globalThis.vscode_languageclient = require("vscode-languageclient"); |
Oops, something went wrong.