Skip to content

Commit

Permalink
Fix worker module
Browse files Browse the repository at this point in the history
  • Loading branch information
trungleduc committed Nov 13, 2023
1 parent a3d80b4 commit 83a92bf
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
1 change: 0 additions & 1 deletion packages/jupytercad-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@jupyterlab/builder": "^4.0.0",
"@types/node": "^18.15.11",
"copy-webpack-plugin": "^10.0.0",
"file-loader": "^6.2.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/jupytercad-worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
"url": "https://github.com/jupyter-cad/jupytercad.git"
},
"scripts": {
"build": "webpack --config worker.webpack.config.js --mode=development",
"build:prod": "webpack --config worker.webpack.config.js --mode=production",
"build:lib": "tsc -b",
"build": "jlpm build:lib && webpack --config worker.webpack.config.js --mode=development",
"build:prod": "jlpm build:lib && webpack --config worker.webpack.config.js --mode=production",
"clean": "rimraf tsconfig.tsbuildinfo",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:all": "jlpm run clean:lib",
Expand Down
1 change: 1 addition & 0 deletions packages/jupytercad-worker/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from './types';
export * from './occparser';
2 changes: 1 addition & 1 deletion python/jupytercad-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupytercad/jupytercad-core",
"version": "0.1.0",
"version": "0.3.3",
"description": "JupyterCad core extension",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletions python/jupytercad-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ artifacts = ["jupytercad_core/labextension"]
exclude = [".github", "binder"]

[tool.hatch.build.targets.wheel.shared-data]
"jupytercad_core/labextension" = "share/jupyter/labextensions/jupytercad-core"
"install.json" = "share/jupyter/labextensions/jupytercad-core/install.json"
"jupytercad_core/labextension" = "share/jupyter/labextensions/@jupytercad/jupytercad-core"
"install.json" = "share/jupyter/labextensions/@jupytercad/jupytercad-core/install.json"
"jupyter-config/server-config" = "etc/jupyter/jupyter_server_config.d"

[tool.hatch.build.hooks.version]
Expand Down
5 changes: 2 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,6 @@ __metadata:
"@jupytercad/jupytercad-worker": ^0.3.3
"@jupyterlab/application": ^4.0.0
"@jupyterlab/apputils": ^4.0.0
"@jupyterlab/builder": ^4.0.0
"@jupyterlab/coreutils": ^6.0.0
"@jupyterlab/docregistry": ^4.0.0
"@jupyterlab/filebrowser": ^4.0.0
Expand Down Expand Up @@ -11536,11 +11535,11 @@ __metadata:

"typescript@patch:typescript@>=3 < 6#~builtin<compat/typescript>, typescript@patch:typescript@^5#~builtin<compat/typescript>":
version: 5.2.2
resolution: "typescript@patch:typescript@npm%3A5.2.2#~builtin<compat/typescript>::version=5.2.2&hash=f3b441"
resolution: "typescript@patch:typescript@npm%3A5.2.2#~builtin<compat/typescript>::version=5.2.2&hash=85af82"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 0f4da2f15e6f1245e49db15801dbee52f2bbfb267e1c39225afdab5afee1a72839cd86000e65ee9d7e4dfaff12239d28beaf5ee431357fcced15fb08583d72ca
checksum: 07106822b4305de3f22835cbba949a2b35451cad50888759b6818421290ff95d522b38ef7919e70fb381c5fe9c1c643d7dea22c8b31652a717ddbd57b7f4d554
languageName: node
linkType: hard

Expand Down

0 comments on commit 83a92bf

Please sign in to comment.