Skip to content

Commit

Permalink
Add bundling step for clientside (#1224)
Browse files Browse the repository at this point in the history
* Add bundling step for clientside
  • Loading branch information
thekevinscott authored Oct 14, 2023
1 parent ad4a626 commit 7ef0fdc
Show file tree
Hide file tree
Showing 10 changed files with 558 additions and 290 deletions.
4 changes: 3 additions & 1 deletion internals/bundlers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"dependencies": {
"@internals/common": "workspace:*",
"@internals/http-server": "workspace:*",
"fs-extra": "latest"
"fs-extra": "latest",
"html-webpack-plugin": "^5.5.3",
"webpack": "^5.88.2"
},
"scripts": {
"run-bundle": "wireit",
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@
"fs-extra": "11.1.1",
"glob": "^10.3.3",
"heapdump": "0.3.15",
"html-webpack-plugin": "5.5.3",
"inquirer": "9.2.10",
"jest": "29.6.3",
"jest-canvas-mock": "2.5.2",
Expand Down Expand Up @@ -130,7 +129,6 @@
"upscaler": "workspace:*",
"vite": "4.4.9",
"vitest": "^0.34.5",
"webpack": "5.88.2",
"yargs": "17.7.2"
},
"engines": {
Expand Down Expand Up @@ -333,7 +331,10 @@
"./internals/test-runner:build",
"./packages/upscalerjs:build:browser",
"build:models:esm",
"build:models:umd"
"build:models:umd",
"bundle:esbuild",
"bundle:webpack",
"bundle:umd"
]
},
"test:integration:serverside": {
Expand Down
Loading

0 comments on commit 7ef0fdc

Please sign in to comment.