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.
Files changed (3) hide show
  1. package/README.md +2 -1
  2. package/domain.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,5 +2,6 @@
2
2
 
3
3
  Used to compile pulumi projects
4
4
 
5
+
5
6
  # License
6
- Published under Apache-2.0
7
+ Published under Apache-2.0
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 = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dcl-ops-lib",
3
- "version": "5.26.3",
3
+ "version": "6.0.1",
4
4
  "scripts": {
5
5
  "build": "tsc && cp bin/* . && node test.js",
6
6
  "clean": "rm *.d.ts *.js *.js.map"