@infoxchange/make-it-so 2.9.0-internal-testing-set-http-proxy-env-var-2.3 → 2.9.0-internal-testing-set-http-proxy-env-var-2.4
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/lib/site/support.js
CHANGED
|
@@ -96,7 +96,7 @@ export function setupVpcDetails(scope, id, props) {
|
|
|
96
96
|
if (!updatedProps.cdk?.revalidation ||
|
|
97
97
|
!("vpc" in updatedProps.cdk.revalidation)) {
|
|
98
98
|
console.log("adding vpc for revalidation server");
|
|
99
|
-
updatedProps.cdk =
|
|
99
|
+
updatedProps.cdk = updatedProps.cdk ?? {};
|
|
100
100
|
updatedProps.cdk.revalidation = {
|
|
101
101
|
...updatedProps.cdk.revalidation,
|
|
102
102
|
vpc: vpcDetails.vpc,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infoxchange/make-it-so",
|
|
3
|
-
"version": "2.9.0-internal-testing-set-http-proxy-env-var-2.
|
|
3
|
+
"version": "2.9.0-internal-testing-set-http-proxy-env-var-2.4",
|
|
4
4
|
"description": "Makes deploying services to IX infra easy",
|
|
5
5
|
"repository": "github:infoxchange/make-it-so",
|
|
6
6
|
"type": "module",
|
package/src/lib/site/support.ts
CHANGED
|
@@ -173,7 +173,7 @@ export function setupVpcDetails<Props extends ExtendedNextjsSiteProps>(
|
|
|
173
173
|
!("vpc" in updatedProps.cdk.revalidation)
|
|
174
174
|
) {
|
|
175
175
|
console.log("adding vpc for revalidation server");
|
|
176
|
-
updatedProps.cdk =
|
|
176
|
+
updatedProps.cdk = updatedProps.cdk ?? {};
|
|
177
177
|
updatedProps.cdk.revalidation = {
|
|
178
178
|
...updatedProps.cdk.revalidation,
|
|
179
179
|
vpc: vpcDetails.vpc,
|