@absolutejs/absolute 0.19.0-beta.130 → 0.19.0-beta.131

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/build.js CHANGED
@@ -9865,7 +9865,7 @@ ${lanes.join(`
9865
9865
  return process.memoryUsage().heapUsed;
9866
9866
  },
9867
9867
  getFileSize(path) {
9868
- const stat2 = statSync2(path);
9868
+ const stat2 = statSync(path);
9869
9869
  if (stat2 == null ? undefined : stat2.isFile()) {
9870
9870
  return stat2.size;
9871
9871
  }
@@ -9908,7 +9908,7 @@ ${lanes.join(`
9908
9908
  }
9909
9909
  };
9910
9910
  return nodeSystem;
9911
- function statSync2(path) {
9911
+ function statSync(path) {
9912
9912
  try {
9913
9913
  return _fs.statSync(path, statSyncOptions);
9914
9914
  } catch {
@@ -9960,7 +9960,7 @@ ${lanes.join(`
9960
9960
  activeSession.post("Profiler.stop", (err, { profile }) => {
9961
9961
  var _a;
9962
9962
  if (!err) {
9963
- if ((_a = statSync2(profilePath)) == null ? undefined : _a.isDirectory()) {
9963
+ if ((_a = statSync(profilePath)) == null ? undefined : _a.isDirectory()) {
9964
9964
  profilePath = _path.join(profilePath, `${(/* @__PURE__ */ new Date()).toISOString().replace(/:/g, "-")}+P${process.pid}.cpuprofile`);
9965
9965
  }
9966
9966
  try {
@@ -10069,7 +10069,7 @@ ${lanes.join(`
10069
10069
  let stat2;
10070
10070
  if (typeof dirent === "string" || dirent.isSymbolicLink()) {
10071
10071
  const name = combinePaths(path, entry);
10072
- stat2 = statSync2(name);
10072
+ stat2 = statSync(name);
10073
10073
  if (!stat2) {
10074
10074
  continue;
10075
10075
  }
@@ -10093,7 +10093,7 @@ ${lanes.join(`
10093
10093
  return matchFiles(path, extensions, excludes, includes, useCaseSensitiveFileNames2, process.cwd(), depth, getAccessibleFileSystemEntries, realpath);
10094
10094
  }
10095
10095
  function fileSystemEntryExists(path, entryKind) {
10096
- const stat2 = statSync2(path);
10096
+ const stat2 = statSync(path);
10097
10097
  if (!stat2) {
10098
10098
  return false;
10099
10099
  }
@@ -10127,7 +10127,7 @@ ${lanes.join(`
10127
10127
  }
10128
10128
  function getModifiedTime3(path) {
10129
10129
  var _a;
10130
- return (_a = statSync2(path)) == null ? undefined : _a.mtime;
10130
+ return (_a = statSync(path)) == null ? undefined : _a.mtime;
10131
10131
  }
10132
10132
  function setModifiedTime(path, time) {
10133
10133
  try {
@@ -171168,6 +171168,7 @@ import {
171168
171168
  mkdirSync as mkdirSync8,
171169
171169
  readFileSync as readFileSync5,
171170
171170
  rmSync,
171171
+ statSync,
171171
171172
  writeFileSync as writeFileSync3
171172
171173
  } from "fs";
171173
171174
  import { basename as basename5, dirname as dirname6, join as join13, relative as relative7, resolve as resolve10 } from "path";
@@ -205060,5 +205061,5 @@ export {
205060
205061
  build
205061
205062
  };
205062
205063
 
205063
- //# debugId=CFC34B6C40EC69F864756E2164756E21
205064
+ //# debugId=242CBBFA5B536A0D64756E2164756E21
205064
205065
  //# sourceMappingURL=build.js.map