@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/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/dist/build.js +8 -7
- package/dist/build.js.map +3 -3
- package/dist/dev/client/constants.ts +25 -0
- package/dist/dev/client/cssUtils.ts +305 -0
- package/dist/dev/client/domDiff.ts +225 -0
- package/dist/dev/client/domState.ts +420 -0
- package/dist/dev/client/domTracker.ts +60 -0
- package/dist/dev/client/errorOverlay.ts +183 -0
- package/dist/dev/client/frameworkDetect.ts +62 -0
- package/dist/dev/client/handlers/angular.ts +551 -0
- package/dist/dev/client/handlers/angularRuntime.ts +205 -0
- package/dist/dev/client/handlers/html.ts +361 -0
- package/dist/dev/client/handlers/htmx.ts +274 -0
- package/dist/dev/client/handlers/react.ts +107 -0
- package/dist/dev/client/handlers/rebuild.ts +152 -0
- package/dist/dev/client/handlers/svelte.ts +328 -0
- package/dist/dev/client/handlers/vue.ts +266 -0
- package/dist/dev/client/headPatch.ts +232 -0
- package/dist/dev/client/hmrClient.ts +250 -0
- package/dist/dev/client/moduleVersions.ts +61 -0
- package/dist/dev/client/reactRefreshSetup.ts +34 -0
- package/dist/index.js +8 -7
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
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 =
|
|
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
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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=
|
|
205064
|
+
//# debugId=242CBBFA5B536A0D64756E2164756E21
|
|
205064
205065
|
//# sourceMappingURL=build.js.map
|