-
Notifications
You must be signed in to change notification settings - Fork 176
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
Deprecate project builds except modern ES Modules, CommonJS and Types #528
Labels
dependencies
Pull requests that update a dependency file
tooling
tooling changes (CI, tests, etc.); no code changes
Comments
JohnAlbin
added
tooling
tooling changes (CI, tests, etc.); no code changes
dependencies
Pull requests that update a dependency file
labels
Oct 5, 2023
1 task
JohnAlbin
added a commit
that referenced
this issue
Oct 18, 2023
JohnAlbin
added a commit
that referenced
this issue
Oct 18, 2023
JohnAlbin
added a commit
that referenced
this issue
Oct 18, 2023
JohnAlbin
added a commit
that referenced
this issue
Oct 18, 2023
JohnAlbin
added a commit
that referenced
this issue
Oct 18, 2023
JohnAlbin
added a commit
that referenced
this issue
Oct 19, 2023
JohnAlbin
added a commit
that referenced
this issue
Oct 19, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
tooling
tooling changes (CI, tests, etc.); no code changes
Next-Drupal currently creates the following builds with
microbundle
:.d.ts
TypeScript types — Used by thetypes
field in package.json.esm.js
ES Modules (ES5) — Used by themodule
field in package.json.js
CommonJS modules — Used by themain
field in package.json.modern.js
ES Modules (w/ Babel bugfixes mode) — Not referenced in package.json.modern.mjs
ES Modules (w/ Babel bugfixes mode) for Node.js — Not referenced in package.json.umd.js
UMD module — Not referenced in package.jsonI'd recommend we only need:
We need to ensure that existing entry points work the same (for the builds we keep).
Related docs:
The text was updated successfully, but these errors were encountered: