Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
GordonSmith committed Aug 18, 2024
1 parent 7adfa77 commit d184117
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ecl-sample/notebooks/test.eclnb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"id": "330c54b6-328d-4c80-9f26-d856383a8a63",
"name": "",
"value": "x = 1;\r\nz = 2;\r\nx + z;",
"value": "x = 1;\r\nz = 2;\r\nx + z * 6;",
"mode": "js",
"shared": true,
"outputs": [
Expand Down
2 changes: 1 addition & 1 deletion esbuild.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Promise.all([
})
]),
main("./src/notebook/renderers/wuRenderer.tsx", "node", "cjs"),
main("./src/notebook/renderers/ojsRenderer.ts", "node", "cjs"),
main("./src/notebook/renderers/ojsRenderer.ts", "browser", "esm"),
main("./src/eclwatch.tsx", "browser", "iife", [replaceAfterTransform()])
]).catch((e) => {
console.error(e);
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,7 @@
{
"id": "ecl-notebook-wurenderer",
"displayName": "%Workunit Renderer%",
"entrypoint": "./dist/notebook/renderers/wuRenderer.js",
"entrypoint": "./dist/wuRenderer.js",
"mimeTypes": [
"application/hpcc.wu+json"
],
Expand All @@ -1496,7 +1496,7 @@
{
"id": "ecl-notebook-ojsrenderer",
"displayName": "%ObservableJS Renderer%",
"entrypoint": "./dist/notebook/renderers/ojsRenderer.js",
"entrypoint": "./dist/ojsRenderer.js",
"mimeTypes": [
"application/hpcc.ojs+json"
]
Expand Down

0 comments on commit d184117

Please sign in to comment.