@absolutejs/absolute 0.19.0-beta.716 → 0.19.0-beta.718
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/angular/index.js.map +2 -2
- package/dist/angular/server.js.map +2 -2
- package/dist/build.js +5 -5
- package/dist/build.js.map +4 -4
- package/dist/index.js +7 -7
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -45704,7 +45704,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
45704
45704
|
outdir: buildPath,
|
|
45705
45705
|
plugins: [
|
|
45706
45706
|
stylePreprocessorPlugin2,
|
|
45707
|
-
...angularDir
|
|
45707
|
+
...angularDir ? [angularLinkerPlugin] : [],
|
|
45708
45708
|
...htmlScriptPlugin ? [htmlScriptPlugin] : []
|
|
45709
45709
|
],
|
|
45710
45710
|
root: clientRoot,
|
|
@@ -45723,7 +45723,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
45723
45723
|
outdir: buildPath,
|
|
45724
45724
|
plugins: [
|
|
45725
45725
|
stylePreprocessorPlugin2,
|
|
45726
|
-
...angularDir
|
|
45726
|
+
...angularDir ? [angularLinkerPlugin] : []
|
|
45727
45727
|
],
|
|
45728
45728
|
root: islandEntryResult.generatedRoot,
|
|
45729
45729
|
splitting: !isDev2,
|
|
@@ -49511,7 +49511,7 @@ __export(exports_devBuild, {
|
|
|
49511
49511
|
});
|
|
49512
49512
|
import { readdir as readdir4 } from "fs/promises";
|
|
49513
49513
|
import { statSync as statSync3 } from "fs";
|
|
49514
|
-
import {
|
|
49514
|
+
import { resolve as resolve34 } from "path";
|
|
49515
49515
|
var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
49516
49516
|
const configuredDirs = [
|
|
49517
49517
|
config.reactDirectory,
|
|
@@ -49521,7 +49521,7 @@ var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
|
49521
49521
|
config.htmlDirectory,
|
|
49522
49522
|
config.htmxDirectory
|
|
49523
49523
|
].filter((dir) => Boolean(dir));
|
|
49524
|
-
return Array.from(new Set(configuredDirs
|
|
49524
|
+
return Array.from(new Set(configuredDirs));
|
|
49525
49525
|
}, parseDirectoryConfig = (source) => {
|
|
49526
49526
|
const config = {};
|
|
49527
49527
|
const dirPattern = /(\w+Directory)\s*:\s*['"]([^'"]+)['"]/g;
|
|
@@ -49956,7 +49956,7 @@ __export(exports_devtoolsJson, {
|
|
|
49956
49956
|
devtoolsJson: () => devtoolsJson
|
|
49957
49957
|
});
|
|
49958
49958
|
import { existsSync as existsSync23, mkdirSync as mkdirSync12, readFileSync as readFileSync15, writeFileSync as writeFileSync8 } from "fs";
|
|
49959
|
-
import { dirname as
|
|
49959
|
+
import { dirname as dirname15, join as join23, resolve as resolve35 } from "path";
|
|
49960
49960
|
import { Elysia as Elysia3 } from "elysia";
|
|
49961
49961
|
var ENDPOINT = "/.well-known/appspecific/com.chrome.devtools.json", UUID_CACHE_KEY = "__absoluteDevtoolsWorkspaceUuid", getGlobalUuid = () => Reflect.get(globalThis, UUID_CACHE_KEY), setGlobalUuid = (uuid) => {
|
|
49962
49962
|
Reflect.set(globalThis, UUID_CACHE_KEY, uuid);
|
|
@@ -49983,7 +49983,7 @@ var ENDPOINT = "/.well-known/appspecific/com.chrome.devtools.json", UUID_CACHE_K
|
|
|
49983
49983
|
if (cachedUuid)
|
|
49984
49984
|
return setGlobalUuid(cachedUuid);
|
|
49985
49985
|
const uuid = crypto.randomUUID();
|
|
49986
|
-
mkdirSync12(
|
|
49986
|
+
mkdirSync12(dirname15(cachePath), { recursive: true });
|
|
49987
49987
|
writeFileSync8(cachePath, uuid, "utf-8");
|
|
49988
49988
|
return setGlobalUuid(uuid);
|
|
49989
49989
|
}, devtoolsJson = (buildDir, options = {}) => {
|
|
@@ -58223,5 +58223,5 @@ export {
|
|
|
58223
58223
|
ANGULAR_INIT_TIMEOUT_MS
|
|
58224
58224
|
};
|
|
58225
58225
|
|
|
58226
|
-
//# debugId=
|
|
58226
|
+
//# debugId=55B4A905C06B5EF864756E2164756E21
|
|
58227
58227
|
//# sourceMappingURL=index.js.map
|