-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Description
Since we are now only building Babel on Node.js 14 (even if we still test it on Node.js 6), we can use native ECMAScript modules for the build scripts:
-
Top-level scripts
There are a bunch of scripts/tests in thescriptsfolder: they can probably all be rewritten to ES modules.
We can probably add"type": "module"to the top-levelpackage.json, renaming config files (such as.eslintrc.js) to.cjs. Note that we cannot use ES modules forbabel.config.jsandjest.config.js, because those two files are used to run tests on Node.js 6. -
babel-types/scriptscan be rewritten to ES modules. These files should be renamed to.mjs, to keep the dist@babel/typesfiles with the.jsextension (they are CJS modules).
Please note that babel-types/scripts depends on the top-level scripts, so babel-types/scripts must be converted first (it cannot synchronously import an ESM file while still being CJS).
In order to test if your changes are still ok, running yarn (only when you clone the repo) and make build && yarn jest should be enough.