Add support for native esm to @babel/runtime (#10748)

* Add support for native esm to @babel/runtime

* Test

* Do not remove new package.json files

* Remove git diff
This commit is contained in:
Nicolò Ribaudo 2019-11-22 23:59:30 +01:00 committed by GitHub
parent 2dfc06e83b
commit 1b4cfc21d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 2 deletions

View File

@ -249,8 +249,9 @@ clean-lib:
$(call clean-source-lib, $(source))))
clean-runtime-helpers:
rm -rf packages/babel-runtime/helpers
rm -rf packages/babel-runtime-corejs2/helpers
rm -f packages/babel-runtime/helpers/**/*.js
rm -f packages/babel-runtime-corejs2/helpers/**/*.js
rm -f packages/babel-runtime-corejs3/helpers/**/*.js
rm -rf packages/babel-runtime-corejs2/core-js
clean-all:

View File

@ -0,0 +1,3 @@
{
"type": "module"
}

View File

@ -0,0 +1,3 @@
{
"type": "module"
}

View File

@ -0,0 +1,3 @@
{
"type": "module"
}