@absolutejs/absolute 0.10.2 → 0.11.0
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/README.md +3 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/eslint.config.mjs +17 -3
- package/package.json +17 -16
- package/tsconfig.build.json +11 -11
- package/dist/plugins/scopedStore.d.ts +0 -40
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# AbsoluteJS
|
|
2
2
|
|
|
3
3
|
Full‑stack, **type‑safe** batteries‑included platform that lets you **server‑side render _any_ modern front‑end**—React, Svelte, plain HTML, HTMX (Vue & Angular coming)—with a single Bun‑powered build step.
|
|
4
4
|
|
|
@@ -141,6 +141,8 @@ No separate config files or environment variables—just explicit arguments with
|
|
|
141
141
|
## Roadmap
|
|
142
142
|
|
|
143
143
|
- **Angular** handlers
|
|
144
|
+
- Prisma support
|
|
145
|
+
- Biome support
|
|
144
146
|
- Hot‑reload development server
|
|
145
147
|
- First‑class Docker images & hosting recipes
|
|
146
148
|
|
package/dist/index.js
CHANGED
|
@@ -235198,7 +235198,7 @@ var build = async ({
|
|
|
235198
235198
|
outputLogs(allLogs);
|
|
235199
235199
|
const manifest = generateManifest([...serverOutputs, ...clientOutputs, ...cssOutputs], buildPath);
|
|
235200
235200
|
if (htmlDir && htmlPagesPath) {
|
|
235201
|
-
const outputHtmlPages = join8(buildPath, basename7(htmlDir), "pages");
|
|
235201
|
+
const outputHtmlPages = isSingle ? join8(buildPath, "pages") : join8(buildPath, basename7(htmlDir), "pages");
|
|
235202
235202
|
await mkdir4(outputHtmlPages, { recursive: true });
|
|
235203
235203
|
await cp(htmlPagesPath, outputHtmlPages, {
|
|
235204
235204
|
force: true,
|
|
@@ -283330,5 +283330,5 @@ export {
|
|
|
283330
283330
|
ANGULAR_BUILD_WARNING_SUPPRESSION
|
|
283331
283331
|
};
|
|
283332
283332
|
|
|
283333
|
-
//# debugId=
|
|
283333
|
+
//# debugId=02BC00F0B8AA264C64756E2164756E21
|
|
283334
283334
|
//# sourceMappingURL=index.js.map
|