Skip to content

Commit 53bae1f

Browse files
authored
Missing util (#255)
1 parent 89af12c commit 53bae1f

File tree

3 files changed

+964
-806
lines changed

3 files changed

+964
-806
lines changed

python/jupytercad_app/webpack.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ module.exports = [
7676
...data.dependencies
7777
}
7878
})
79-
]
79+
],
80+
resolve: {
81+
fallback: {
82+
util: require.resolve('util/')
83+
}
84+
}
8085
})
8186
].concat(extras);

python/jupytercad_core/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@
6666
"@jupyterlab/services": "^7.0.0",
6767
"@jupyterlab/translation": "^4.0.0",
6868
"@jupyterlab/ui-components": "^4.0.0",
69-
"@lumino/commands": "^2.0.0"
69+
"@lumino/commands": "^2.0.0",
70+
"util": "^0.12.5"
7071
},
7172
"devDependencies": {
7273
"@jupyterlab/builder": "^4.0.0",

0 commit comments

Comments
 (0)