@tachyon-gg/railway-deploy 0.2.2 → 0.2.3
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39658,7 +39658,7 @@ function diffDomains(serviceName, desired, current, currentDomains, changes) {
|
|
|
39658
39658
|
domain: domainName,
|
|
39659
39659
|
...desiredDomain.targetPort !== undefined ? { targetPort: desiredDomain.targetPort } : {}
|
|
39660
39660
|
});
|
|
39661
|
-
} else if (desiredDomain.targetPort !== existing.targetPort) {
|
|
39661
|
+
} else if (desiredDomain.targetPort !== undefined && desiredDomain.targetPort !== existing.targetPort) {
|
|
39662
39662
|
changes.push({
|
|
39663
39663
|
type: "delete-domain",
|
|
39664
39664
|
serviceName,
|