@absolutejs/absolute 0.19.0-beta.1124 → 0.19.0-beta.1126
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/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/angular/index.js +31 -11
- package/dist/angular/index.js.map +3 -3
- package/dist/angular/server.js +31 -11
- package/dist/angular/server.js.map +3 -3
- package/dist/build.js +32 -8
- package/dist/build.js.map +3 -3
- package/dist/cli/index.js +48 -59
- package/dist/index.js +32 -8
- package/dist/index.js.map +3 -3
- package/dist/src/angular/pageHandler.d.ts +2 -0
- package/dist/src/cli/serverBundleExternals.d.ts +2 -0
- package/package.json +10 -5
|
@@ -44,5 +44,7 @@ export type AngularPageRequestInput<Ctx = unknown> = AngularPageRenderOptions &
|
|
|
44
44
|
} : {
|
|
45
45
|
requestContext: NoInfer<Ctx>;
|
|
46
46
|
});
|
|
47
|
+
export declare const resolveAngularSsrOutDir: (projectRoot?: string, configuredOutDir?: string | undefined) => string;
|
|
48
|
+
export declare const ensureAngularSsrNodeModules: (outDir: string, projectRoot?: string, hasConfiguredOutDir?: boolean) => Promise<void>;
|
|
47
49
|
export declare const handleAngularPageRequest: <Page = unknown>(input: AngularPageRequestInput<Page>) => Promise<Response>;
|
|
48
50
|
export {};
|
package/package.json
CHANGED
|
@@ -643,14 +643,19 @@
|
|
|
643
643
|
"db:studio": "drizzle-kit studio",
|
|
644
644
|
"dev": "TELEMETRY_OFF=1 bun run src/cli/index.ts dev example/server.ts --config example/absolute.config.ts",
|
|
645
645
|
"format": "bun run src/cli/index.ts prettier --write",
|
|
646
|
+
"format:check": "bun run src/cli/index.ts prettier --check",
|
|
646
647
|
"lint": "bun run src/cli/index.ts eslint",
|
|
647
648
|
"ls": "bun run src/cli/index.ts ls",
|
|
648
|
-
"release": "bun run
|
|
649
|
-
"release:beta": "bun run
|
|
649
|
+
"release": "bun run release:gate && ./native/publish.sh && bun publish",
|
|
650
|
+
"release:beta": "bun run release:gate && ./native/publish.sh --tag beta && bun publish --tag beta",
|
|
651
|
+
"release:gate": "bun run scripts/releaseGate.ts",
|
|
650
652
|
"start": "TELEMETRY_OFF=1 bun run src/cli/index.ts start example/server.ts --outdir example/dist --config example/absolute.config.ts",
|
|
651
|
-
"test": "bun test
|
|
653
|
+
"test": "bun run test:unit && bun run test:integration",
|
|
652
654
|
"test:hmr": "bun run scripts/shardedTests.ts tests/integration/hmr",
|
|
653
|
-
"
|
|
655
|
+
"test:integration": "bun run scripts/shardedTests.ts tests/integration",
|
|
656
|
+
"test:unit": "bun test tests/unit",
|
|
657
|
+
"typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts",
|
|
658
|
+
"verify:release-versions": "bun run scripts/verifyReleaseVersions.ts"
|
|
654
659
|
},
|
|
655
660
|
"types": "./dist/src/index.d.ts",
|
|
656
661
|
"typesVersions": {
|
|
@@ -693,7 +698,7 @@
|
|
|
693
698
|
]
|
|
694
699
|
}
|
|
695
700
|
},
|
|
696
|
-
"version": "0.19.0-beta.
|
|
701
|
+
"version": "0.19.0-beta.1126",
|
|
697
702
|
"workspaces": [
|
|
698
703
|
"tests/fixtures/*",
|
|
699
704
|
"tests/fixtures/_packages/*"
|