You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Out package size is currently 103MB, roughly 40MB of dist/web, 46MB of dist/node and 16MB of src/
In the dist folder, we are not minifying the files, and ~80% of the src folder is taken up by o1js_node.bc.map in the compiled bindings folder.
We can certainly shave off some bytes by minifying some build files in all cases. We may also want to split up some of our packages. For instance, the type data could be installed separately as a dev dependency, and the web version could be released as a standalone package of 40MB.
The text was updated successfully, but these errors were encountered:
dist/web can always be deleted after building except for index.js since it's all packaged in there. it's already minified.
please don't minify dist/node, that would hurt debugging a lot. >95% of the file size is already minified jsoo code or wasm, there's not much to gain
the compiled bindings folder can be excluded from publishing except for the TS declaration files. after all, the source is not used after publishing, except for source maps
Out package size is currently 103MB, roughly 40MB of dist/web, 46MB of dist/node and 16MB of src/
In the dist folder, we are not minifying the files, and ~80% of the src folder is taken up by
o1js_node.bc.map
in the compiled bindings folder.We can certainly shave off some bytes by minifying some build files in all cases. We may also want to split up some of our packages. For instance, the type data could be installed separately as a dev dependency, and the web version could be released as a standalone package of 40MB.
The text was updated successfully, but these errors were encountered: