update babel and rollup paths to use Debian packages files

Forwarded: not-needed
Last-Update: 2021-01-05

Gbp-Pq: Name update-rollup-and-babel-paths.patch
This commit is contained in:
Xavier Guimard 2022-05-19 14:59:04 +08:00 committed by openKylinBot
parent c3aec8a6bd
commit 74777bb357
2 changed files with 10 additions and 0 deletions

View File

@ -240,6 +240,7 @@ function buildRollup(packages, targetBrowsers) {
input,
external,
onwarn(warning, warn) {
if (warning.code === 'THIS_IS_UNDEFINED') return;
if (warning.code !== "CIRCULAR_DEPENDENCY") {
warn(warning);
// https://github.com/babel/babel/pull/12011#discussion_r540434534
@ -272,6 +273,11 @@ function buildRollup(packages, targetBrowsers) {
"packages/babel-preset-env/data/*.js",
// Rollup doesn't read export maps, so it loads the cjs fallback
"packages/babel-compat-data/*.js",
/nodejs/,
"../**/nodejs/**",
"/usr/share/**",
"/usr/lib/**",
"debian/**",
],
}),
rollupJson(),

View File

@ -36,6 +36,10 @@ module.exports = function (api) {
"codemods/*/test",
"eslint/*/src",
"eslint/*/test",
"../**/nodejs/*/",
"/usr/share/nodejs/*/",
"/usr/lib/nodejs/*/",
"/usr/share/javascript/*/",
];
switch (env) {