Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support building for externally shared js builtins #91

Merged
merged 3 commits into from Apr 14, 2024

Commits on Feb 1, 2024

  1. Support building for externally shared js builtins

    Initial support for loading unbundled module in `AddExternalizedBuiltin`.
    
    - Reduces downstream distribution package size (by not shipping wasm twice
      and not base64-encoding it)
    - Provides a cleaner stacktrace
    - Easier to patch
    
    To enable this, pass `EXTERNAL_PATH=/global/node_modules/cjs-module-lexer`
    to `build.js`.
    You shall also pass this path to `--shared-builtin-cjs_module_lexer/dist/lexer-path`
    in Node.js's `configure.py`, with the extra `/dist` part in the path.
    
    Signed-off-by: Zephyr Lykos <git@mochaa.ws>
    mochaaP committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    3c5407e View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. Inline wasm binary loader

    mochaaP committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    e17dd9d View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. Refactor CI workflow

    mochaaP committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    7ca131a View commit details
    Browse the repository at this point in the history