@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/build.js
CHANGED
|
@@ -45512,7 +45512,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
45512
45512
|
outdir: buildPath,
|
|
45513
45513
|
plugins: [
|
|
45514
45514
|
stylePreprocessorPlugin2,
|
|
45515
|
-
...angularDir
|
|
45515
|
+
...angularDir ? [angularLinkerPlugin] : [],
|
|
45516
45516
|
...htmlScriptPlugin ? [htmlScriptPlugin] : []
|
|
45517
45517
|
],
|
|
45518
45518
|
root: clientRoot,
|
|
@@ -45531,7 +45531,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
45531
45531
|
outdir: buildPath,
|
|
45532
45532
|
plugins: [
|
|
45533
45533
|
stylePreprocessorPlugin2,
|
|
45534
|
-
...angularDir
|
|
45534
|
+
...angularDir ? [angularLinkerPlugin] : []
|
|
45535
45535
|
],
|
|
45536
45536
|
root: islandEntryResult.generatedRoot,
|
|
45537
45537
|
splitting: !isDev,
|
|
@@ -49434,7 +49434,7 @@ __export(exports_devBuild, {
|
|
|
49434
49434
|
});
|
|
49435
49435
|
import { readdir as readdir4 } from "fs/promises";
|
|
49436
49436
|
import { statSync as statSync3 } from "fs";
|
|
49437
|
-
import {
|
|
49437
|
+
import { resolve as resolve32 } from "path";
|
|
49438
49438
|
var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
49439
49439
|
const configuredDirs = [
|
|
49440
49440
|
config.reactDirectory,
|
|
@@ -49444,7 +49444,7 @@ var FRAMEWORK_DIR_KEYS, collectDepVendorSourceDirs = (config) => {
|
|
|
49444
49444
|
config.htmlDirectory,
|
|
49445
49445
|
config.htmxDirectory
|
|
49446
49446
|
].filter((dir) => Boolean(dir));
|
|
49447
|
-
return Array.from(new Set(configuredDirs
|
|
49447
|
+
return Array.from(new Set(configuredDirs));
|
|
49448
49448
|
}, parseDirectoryConfig = (source) => {
|
|
49449
49449
|
const config = {};
|
|
49450
49450
|
const dirPattern = /(\w+Directory)\s*:\s*['"]([^'"]+)['"]/g;
|
|
@@ -49763,5 +49763,5 @@ export {
|
|
|
49763
49763
|
build
|
|
49764
49764
|
};
|
|
49765
49765
|
|
|
49766
|
-
//# debugId=
|
|
49766
|
+
//# debugId=1B1EC4DE6F19148564756E2164756E21
|
|
49767
49767
|
//# sourceMappingURL=build.js.map
|