@sveltejs/kit 1.0.0-next.401 → 1.0.0-next.402
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunks/sync.js +0 -2
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/dist/chunks/sync.js
CHANGED
|
@@ -1169,7 +1169,6 @@ const find_illegal_rollup_imports = (
|
|
|
1169
1169
|
if (chain) return [{ name, dynamic }, ...chain];
|
|
1170
1170
|
}
|
|
1171
1171
|
|
|
1172
|
-
seen.delete(name);
|
|
1173
1172
|
return null;
|
|
1174
1173
|
};
|
|
1175
1174
|
|
|
@@ -1231,7 +1230,6 @@ function find_illegal_vite_imports(node, illegal_imports, module_types, seen = n
|
|
|
1231
1230
|
if (chain) return [{ name, dynamic: false }, ...chain];
|
|
1232
1231
|
}
|
|
1233
1232
|
|
|
1234
|
-
seen.delete(name);
|
|
1235
1233
|
return null;
|
|
1236
1234
|
}
|
|
1237
1235
|
|
package/dist/cli.js
CHANGED