hytopia 0.14.4 → 0.14.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/scripts.js +1 -1
- package/package.json +1 -1
- package/server.mjs +81 -81
package/bin/scripts.js
CHANGED
|
@@ -464,7 +464,7 @@ async function packageProject() {
|
|
|
464
464
|
|
|
465
465
|
|
|
466
466
|
async function build(devMode = false) {
|
|
467
|
-
let envFlags = devMode ? '' : '--minify --sourcemap=inline';
|
|
467
|
+
let envFlags = devMode ? '' : '--minify-whitespace --minify-syntax --sourcemap=inline';
|
|
468
468
|
|
|
469
469
|
execSync(`npx --yes bun build --target=node --env=disable --format=esm ${envFlags} --external=@fails-components/webtransport --external=@fails-components/webtransport-transport-http3-quiche --outfile=index.mjs index.ts`, { stdio: 'inherit' });
|
|
470
470
|
}
|
package/package.json
CHANGED