@absolutejs/absolute 0.19.0-beta.389 → 0.19.0-beta.390

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/index.js CHANGED
@@ -172397,10 +172397,6 @@ var resolveDevClientDir2 = () => {
172397
172397
  persistentCache.clear();
172398
172398
  sourceHashCache.clear();
172399
172399
  }, transpiler2, removeUnusedRequireHelper = (code) => {
172400
- const requireMatches = code.match(/\b__require\b/g);
172401
- if (requireMatches && requireMatches.length > 1) {
172402
- return code;
172403
- }
172404
172400
  const helperStart = code.indexOf("var __require = /* @__PURE__ */");
172405
172401
  if (helperStart === -1) {
172406
172402
  return code;
@@ -172414,7 +172410,8 @@ var resolveDevClientDir2 = () => {
172414
172410
  if (statementEnd === -1) {
172415
172411
  return code;
172416
172412
  }
172417
- return `${code.slice(0, helperStart)}${code.slice(statementEnd + 3)}`;
172413
+ const stripped = `${code.slice(0, helperStart)}${code.slice(statementEnd + 3)}`;
172414
+ return /\b__require\b/.test(stripped) ? code : stripped;
172418
172415
  }, exists = async (path) => {
172419
172416
  try {
172420
172417
  await stat(path);
@@ -187589,5 +187586,5 @@ export {
187589
187586
  ANGULAR_INIT_TIMEOUT_MS
187590
187587
  };
187591
187588
 
187592
- //# debugId=043BF8656FFA280564756E2164756E21
187589
+ //# debugId=59634BE08FC84BA964756E2164756E21
187593
187590
  //# sourceMappingURL=index.js.map