mirror of
https://github.com/remko/waforth
synced 2024-12-26 09:59:09 +01:00
vscode-extension: Fix web support
This commit is contained in:
parent
4f154243b5
commit
fcc610b0cd
5 changed files with 52 additions and 26 deletions
13
.vscode/launch.json
vendored
13
.vscode/launch.json
vendored
|
@ -12,6 +12,19 @@
|
|||
"${workspaceFolder}/src/web/vscode-extension/examples"
|
||||
],
|
||||
"outFiles": ["${workspaceFolder}/src/web/vscode-extension/dist/*.js"]
|
||||
},
|
||||
{
|
||||
"name": "Run VS Code Extension (Web)",
|
||||
"type": "extensionHost",
|
||||
"debugWebWorkerHost": true,
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceFolder}/src/web/vscode-extension",
|
||||
"--extensionDevelopmentKind=web",
|
||||
"${workspaceFolder}/src/web/vscode-extension/examples"
|
||||
],
|
||||
"outFiles": ["${workspaceFolder}/src/web/vscode-extension/dist/*.js"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -8,9 +8,8 @@ install-deps:
|
|||
.PHONY: prepackage
|
||||
prepackage: all LICENSE.txt icon.png
|
||||
|
||||
|
||||
.PHONY: package
|
||||
package: prepackage
|
||||
package:
|
||||
vsce package
|
||||
|
||||
.PHONY: publish
|
||||
|
|
|
@ -8,7 +8,7 @@ Logo-like Forth Turtle graphics.
|
|||
|
||||
<div align="center">
|
||||
<div>
|
||||
<a href="https://mko.re/waforth/"><img src="https://raw.githubusercontent.com/remko/waforth/master/src/web/vscode-extension/doc/notebook.gif" alt="WAForth notebook"></a>
|
||||
<a href="https://github.dev/remko/waforth/blob/master/src/web/vscode-extension/examples/drawing-with-forth.wafnb"><img src="https://raw.githubusercontent.com/remko/waforth/master/src/web/vscode-extension/doc/notebook.gif" alt="WAForth notebook"></a>
|
||||
</div>
|
||||
<figcaption><em><a href="https://mko.re/waforth/">WAForth notebook</a></em></figcaption>
|
||||
<figcaption><em><a href="https://github.dev/remko/waforth/blob/master/src/web/vscode-extension/examples/drawing-with-forth.wafnb">WAForth notebook</a></em></figcaption>
|
||||
</div>
|
|
@ -15,22 +15,35 @@ for (const arg of process.argv.slice(2)) {
|
|||
}
|
||||
}
|
||||
|
||||
esbuild
|
||||
.build({
|
||||
bundle: true,
|
||||
logLevel: "info",
|
||||
entryPoints: [path.join(__dirname, "src/extension.ts")],
|
||||
outfile: path.join(__dirname, "dist/extension.js"),
|
||||
format: "cjs",
|
||||
minify: !dev,
|
||||
sourcemap: true,
|
||||
platform: "node",
|
||||
external: ["vscode"],
|
||||
loader: {
|
||||
".wasm": "binary",
|
||||
".fs": "text",
|
||||
".svg": "dataurl",
|
||||
},
|
||||
plugins: [wasmTextPlugin({ debug: true })],
|
||||
})
|
||||
.catch(() => process.exit(1));
|
||||
const config = {
|
||||
bundle: true,
|
||||
logLevel: "info",
|
||||
entryPoints: [path.join(__dirname, "src/extension.ts")],
|
||||
format: "cjs",
|
||||
minify: !dev,
|
||||
sourcemap: true,
|
||||
external: ["vscode"],
|
||||
loader: {
|
||||
".wasm": "binary",
|
||||
".fs": "text",
|
||||
".svg": "dataurl",
|
||||
},
|
||||
plugins: [wasmTextPlugin({ debug: true })],
|
||||
};
|
||||
|
||||
(async () => {
|
||||
try {
|
||||
await esbuild.build({
|
||||
...config,
|
||||
outfile: path.join(__dirname, "dist/extension.js"),
|
||||
platform: "node",
|
||||
});
|
||||
await esbuild.build({
|
||||
...config,
|
||||
outfile: path.join(__dirname, "dist/extension.web.js"),
|
||||
platform: "browser",
|
||||
});
|
||||
} catch (e) {
|
||||
process.exit(1);
|
||||
}
|
||||
})();
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "waforth-vscode-extension",
|
||||
"version": "0.1.3",
|
||||
"version": "0.1.5",
|
||||
"displayName": "WAForth",
|
||||
"description": "WAForth interactive notebooks",
|
||||
"categories": [
|
||||
|
@ -8,14 +8,15 @@
|
|||
"Notebooks"
|
||||
],
|
||||
"keywords": [
|
||||
"forth"
|
||||
"forth",
|
||||
"wafnb"
|
||||
],
|
||||
"publisher": "remko",
|
||||
"license": "MIT",
|
||||
"repository": "github:remko/waforth",
|
||||
"icon": "icon.png",
|
||||
"main": "dist/extension.js",
|
||||
"browser": "dist/extension.js",
|
||||
"browser": "dist/extension.web.js",
|
||||
"engines": {
|
||||
"vscode": "^1.61.0"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue