Skip to content

Commit

Permalink
fix(webpack): fix broken bundling - cannot find webpack.config.js
Browse files Browse the repository at this point in the history
Signed-off-by: deepto <ddepp98@outlook.com>
  • Loading branch information
deepto98 authored and sandeepnRES committed Jun 1, 2023
1 parent 4b5ee09 commit 760c778
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/cactus-workshop-examples-2022-11-14/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
"watch": "npm-watch",
"webpack": "npm-run-all webpack:dev",
"webpack:dev": "npm-run-all webpack:dev:node webpack:dev:web",
"webpack:dev:node": "webpack --env=dev --target=node --config ../../../webpack.config.js",
"webpack:dev:web": "webpack --env=dev --target=web --config ../../../webpack.config.js"
"webpack:dev:node": "webpack --env=dev --target=node --config ../../webpack.config.js",
"webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js"
},
"dependencies": {
"@hyperledger/cactus-common": "2.0.0-alpha.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};

0 comments on commit 760c778

Please sign in to comment.