@absolutejs/absolute 0.19.0-beta.50 → 0.19.0-beta.51

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/cli/index.js CHANGED
@@ -673,6 +673,8 @@ var dev = async (serverEntry, configPath2) => {
673
673
  return;
674
674
  if (!filename.endsWith(".ts") && !filename.endsWith(".tsx"))
675
675
  return;
676
+ if (filename.includes(".tmp.") || filename.endsWith(".tmp"))
677
+ return;
676
678
  if (restartTimeout)
677
679
  clearTimeout(restartTimeout);
678
680
  restartTimeout = setTimeout(() => {
package/dist/index.js CHANGED
@@ -172295,7 +172295,7 @@ var safeRemoveFromGraph = (graph, fullPath) => {
172295
172295
  operation: "add"
172296
172296
  });
172297
172297
  }
172298
- }, shouldSkipFilename = (filename, isStylesDir) => !isStylesDir && (filename === "compiled" || filename === "build" || filename === "indexes" || filename === "server" || filename === "client" || filename.includes("/compiled") || filename.includes("/build") || filename.includes("/indexes") || filename.includes("/server") || filename.includes("/client")) || filename.endsWith("/"), setupWatcher = (absolutePath, isStylesDir, state, onFileChange) => {
172298
+ }, shouldSkipFilename = (filename, isStylesDir) => !isStylesDir && (filename === "compiled" || filename === "build" || filename === "indexes" || filename === "server" || filename === "client" || filename.includes("/compiled") || filename.includes("/build") || filename.includes("/indexes") || filename.includes("/server") || filename.includes("/client")) || filename.endsWith("/") || filename.includes(".tmp.") || filename.endsWith(".tmp") || filename.endsWith("~") || filename.startsWith(".#"), setupWatcher = (absolutePath, isStylesDir, state, onFileChange) => {
172299
172299
  const watcher = watch(absolutePath, { recursive: true }, (event, filename) => {
172300
172300
  if (!filename) {
172301
172301
  return;
@@ -205202,5 +205202,5 @@ export {
205202
205202
  ANGULAR_INIT_TIMEOUT_MS
205203
205203
  };
205204
205204
 
205205
- //# debugId=2224FF6EE5B290FD64756E2164756E21
205205
+ //# debugId=704BB586F225E37464756E2164756E21
205206
205206
  //# sourceMappingURL=index.js.map