@ts-cloud/core 0.2.11 → 0.2.12
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/types.d.ts +7 -0
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -828,6 +828,13 @@ export interface StorageItemConfig {
|
|
|
828
828
|
* Example: ['example.com', 'www.example.com']
|
|
829
829
|
*/
|
|
830
830
|
aliases?: string[];
|
|
831
|
+
/**
|
|
832
|
+
* Mount this website bucket under the main site CloudFront distribution instead
|
|
833
|
+
* of provisioning a dedicated distribution/subdomain.
|
|
834
|
+
* Example: '/docs' serves this bucket at https://example.com/docs.
|
|
835
|
+
*/
|
|
836
|
+
path?: string;
|
|
837
|
+
mountPath?: string;
|
|
831
838
|
/**
|
|
832
839
|
* Whether this bucket serves a single-page application (SPA).
|
|
833
840
|
* When true: 403/404 errors return index.html with status 200 (for client-side routing).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-cloud/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Core CloudFormation generation library for ts-cloud",
|
|
6
6
|
"author": "Chris Breuer <chris@stacksjs.com>",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"typecheck": "tsc --noEmit"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@ts-cloud/aws-types": "0.2.
|
|
34
|
+
"@ts-cloud/aws-types": "0.2.12"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"typescript": "^5.9.3"
|