@gradientedge/cdk-utils 8.82.0 → 8.83.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.
|
@@ -31,7 +31,7 @@ export declare class StaticAssetDeployment extends CommonConstruct {
|
|
|
31
31
|
* @summary Initialise and provision resources
|
|
32
32
|
* @protected
|
|
33
33
|
*/
|
|
34
|
-
|
|
34
|
+
initResources(): void;
|
|
35
35
|
/**
|
|
36
36
|
* @summary Create the static asset bucket
|
|
37
37
|
* @protected
|
package/package.json
CHANGED
|
@@ -34,7 +34,6 @@ export class StaticAssetDeployment extends CommonConstruct {
|
|
|
34
34
|
|
|
35
35
|
constructor(parent: Construct, id: string, props: StaticAssetDeploymentProps) {
|
|
36
36
|
super(parent, id, props)
|
|
37
|
-
|
|
38
37
|
this.props = props
|
|
39
38
|
this.id = id
|
|
40
39
|
}
|
|
@@ -43,7 +42,7 @@ export class StaticAssetDeployment extends CommonConstruct {
|
|
|
43
42
|
* @summary Initialise and provision resources
|
|
44
43
|
* @protected
|
|
45
44
|
*/
|
|
46
|
-
|
|
45
|
+
public initResources() {
|
|
47
46
|
this.createAssetBucket()
|
|
48
47
|
this.deployStaticAssets()
|
|
49
48
|
}
|