dcl-ops-lib 5.26.3 → 6.0.1
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/README.md +2 -1
- package/domain.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/domain.js
CHANGED
|
@@ -4,7 +4,7 @@ exports.publicDomain = exports.domain = exports.publicTLD = exports.envTLD = exp
|
|
|
4
4
|
const env = process.env["ENVIRONMENT"];
|
|
5
5
|
exports.env = env;
|
|
6
6
|
if (env === undefined) {
|
|
7
|
-
throw new Error("Set the ENVIRONMENT environment before proceeding");
|
|
7
|
+
throw new Error("Set the ENVIRONMENT environment before proceeding.");
|
|
8
8
|
}
|
|
9
9
|
/** Internal TLD { prd=co stg=net dev=io }, managed by AWS */
|
|
10
10
|
let envTLD = "";
|