@absolutejs/absolute 0.19.0-beta.83 → 0.19.0-beta.85
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 +3 -3
- package/dist/build.js.map +3 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -204331,7 +204331,7 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
|
|
|
204331
204331
|
const hasNonComponentFiles = (filesToRebuild ?? []).some((f) => f.endsWith(".ts") && !f.endsWith(".d.ts"));
|
|
204332
204332
|
const buildConfig = {
|
|
204333
204333
|
...config,
|
|
204334
|
-
incrementalFiles: filesToRebuild && filesToRebuild.length > 0 ? filesToRebuild : undefined,
|
|
204334
|
+
incrementalFiles: hasNonComponentFiles ? undefined : filesToRebuild && filesToRebuild.length > 0 ? filesToRebuild : undefined,
|
|
204335
204335
|
options: {
|
|
204336
204336
|
...config.options,
|
|
204337
204337
|
baseManifest: state.manifest,
|
|
@@ -204348,7 +204348,7 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
|
|
|
204348
204348
|
writeFileSync5(tmpConfig, JSON.stringify(buildConfig));
|
|
204349
204349
|
const escapedConfig = tmpConfig.replace(/\\/g, "\\\\");
|
|
204350
204350
|
writeFileSync5(tmpScript, [
|
|
204351
|
-
'import { build } from "@absolutejs/absolute";',
|
|
204351
|
+
'import { build } from "@absolutejs/absolute/build";',
|
|
204352
204352
|
`const config = JSON.parse(await Bun.file("${escapedConfig}").text());`,
|
|
204353
204353
|
"const manifest = await build(config);",
|
|
204354
204354
|
'console.log("__MANIFEST__" + JSON.stringify(manifest));'
|
|
@@ -205309,5 +205309,5 @@ export {
|
|
|
205309
205309
|
ANGULAR_INIT_TIMEOUT_MS
|
|
205310
205310
|
};
|
|
205311
205311
|
|
|
205312
|
-
//# debugId=
|
|
205312
|
+
//# debugId=7281C878FE13358664756E2164756E21
|
|
205313
205313
|
//# sourceMappingURL=index.js.map
|