-
Notifications
You must be signed in to change notification settings - Fork 195
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 for exports
in package.json
#903
Comments
sgammon
added a commit
to elide-dev/graaljs
that referenced
this issue
Mar 24, 2025
If a module `package.json` specifies `exports`, GraalJs will now read them and prefer exports over standard resolution; export types can be registered by the developer as preferred. In lieu of these types (and as a default), the following export types are preferred, in order: - `graaljs` - `import` (in ESM) - `require` - `default` Fixes and closes oracle#903 Relates-to: oracle#903 Signed-off-by: Sam Gammon <[email protected]>
sgammon
added a commit
to elide-dev/elide
that referenced
this issue
Mar 24, 2025
feat: add precompiler ts/jsx/esm flags feat: enable jsx/tsx support by default feat: export node `stream` module facade fix: polyfills for builtin node streams fix: gvm `24.2.x` compat for graaljs fix: support `package.json` exports in graaljs chore: rebuild polyfills/js vfs Applies patch to solve oracle/graaljs#903. Signed-off-by: Sam Gammon <[email protected]>
6 tasks
sgammon
added a commit
to elide-dev/elide
that referenced
this issue
Mar 24, 2025
feat: add precompiler ts/jsx/esm flags feat: enable jsx/tsx support by default feat: export node `stream` module facade test: add smoke test for jsx/tsx test: add smoke test for react imports test: add smoke test for react rendering (ssr) fix: polyfills for builtin node streams fix: gvm `24.2.x` compat for graaljs fix: support `package.json` exports in graaljs chore: rebuild polyfills/js vfs chore: update api pins chore: update detekt baselines Applies patch to solve oracle/graaljs#903. Signed-off-by: Sam Gammon <[email protected]>
sgammon
added a commit
to elide-dev/elide
that referenced
this issue
Mar 24, 2025
feat: add precompiler ts/jsx/esm flags feat: enable jsx/tsx support by default feat: export node `stream` module facade test: add smoke test for jsx/tsx test: add smoke test for react imports test: add smoke test for react rendering (ssr) fix: polyfills for builtin node streams fix: gvm `24.2.x` compat for graaljs fix: support `package.json` exports in graaljs chore: rebuild polyfills/js vfs chore: update api pins chore: update detekt baselines Applies patch to solve oracle/graaljs#903. Signed-off-by: Sam Gammon <[email protected]>
sgammon
added a commit
to elide-dev/elide
that referenced
this issue
Mar 24, 2025
feat: add precompiler ts/jsx/esm flags feat: enable jsx/tsx support by default feat: export node `stream` module facade test: add smoke test for jsx/tsx test: add smoke test for react imports test: add smoke test for react rendering (ssr) fix: polyfills for builtin node streams fix: gvm `24.2.x` compat for graaljs fix: support `package.json` exports in graaljs chore: rebuild polyfills/js vfs chore: update api pins chore: update detekt baselines Applies patch to solve oracle/graaljs#903. Signed-off-by: Sam Gammon <[email protected]>
sgammon
added a commit
to elide-dev/elide
that referenced
this issue
Mar 24, 2025
feat: add precompiler ts/jsx/esm flags feat: enable jsx/tsx support by default feat: export node `stream` module facade test: add smoke test for jsx/tsx test: add smoke test for react imports test: add smoke test for react rendering (ssr) fix: polyfills for builtin node streams fix: gvm `24.2.x` compat for graaljs fix: support `package.json` exports in graaljs chore: rebuild polyfills/js vfs chore: update api pins chore: update detekt baselines Applies patch to solve oracle/graaljs#903. Signed-off-by: Sam Gammon <[email protected]>
sgammon
added a commit
to elide-dev/elide
that referenced
this issue
Mar 24, 2025
feat: add precompiler ts/jsx/esm flags feat: enable jsx/tsx support by default feat: export node `stream` module facade test: add smoke test for jsx/tsx test: add smoke test for react imports test: add smoke test for react rendering (ssr) fix: polyfills for builtin node streams fix: gvm `24.2.x` compat for graaljs fix: support `package.json` exports in graaljs chore: rebuild polyfills/js vfs chore: update api pins chore: update detekt baselines Applies patch to solve oracle/graaljs#903. Signed-off-by: Sam Gammon <[email protected]>
sgammon
added a commit
to elide-dev/elide
that referenced
this issue
Mar 24, 2025
feat(graalvm): add support for jsx/tsx feat: add precompiler ts/jsx/esm flags feat: enable jsx/tsx support by default feat: export node `stream` module facade test: add smoke test for jsx/tsx test: add smoke test for react imports test: add smoke test for react rendering (ssr) fix: polyfills for builtin node streams fix: gvm `24.2.x` compat for graaljs fix: support `package.json` exports in graaljs chore: rebuild polyfills/js vfs chore: update api pins chore: update detekt baselines Applies patch to solve oracle/graaljs#903. Signed-off-by: Sam Gammon <[email protected]>
sgammon
added a commit
to elide-dev/graaljs
that referenced
this issue
Mar 24, 2025
If a module `package.json` specifies `exports`, GraalJs will now read them and prefer exports over standard resolution; export types can be registered by the developer as preferred. In lieu of these types (and as a default), the following export types are preferred, in order: - `graaljs` - `import` (in ESM) - `require` - `default` Fixes and closes oracle#903 Relates-to: oracle#903 Signed-off-by: Sam Gammon <[email protected]>
sgammon
added a commit
to elide-dev/graaljs
that referenced
this issue
Mar 24, 2025
If a module `package.json` specifies `exports`, GraalJs will now read them and prefer exports over standard resolution; export types can be registered by the developer as preferred. In lieu of these types (and as a default), the following export types are preferred, in order: - `graaljs` - `import` (in ESM) - `require` - `default` Fixes and closes oracle#903 Relates-to: oracle#903 Signed-off-by: Sam Gammon <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Many packages, including
react
, use theexports
property to define a formal module export surface.However, GraalJs currently bails eagerly under such circumstances:
graaljs/graal-js/src/com.oracle.truffle.js/src/com/oracle/truffle/js/builtins/commonjs/NpmCompatibleESModuleLoader.java
Lines 427 to 430 in f256a80
The text was updated successfully, but these errors were encountered: