@forzalabs/remora 1.1.2 → 1.1.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/index.js +1 -4
- package/package.json +1 -1
- package/workers/ExecutorWorker.js +1 -4
package/index.js
CHANGED
|
@@ -268,9 +268,6 @@ var ProcessENVManagerClass = class {
|
|
|
268
268
|
*/
|
|
269
269
|
this.getEnvVariable = (variable) => {
|
|
270
270
|
Affirm_default(variable, `Cannot read an undefined variable`);
|
|
271
|
-
if (!this.FOUNDAMENTAL_ENVIRONMENT_VARIABLES.includes(variable) || !this.ENVIRONMENT_VARIABLES.includes(variable)) {
|
|
272
|
-
console.warn(`Trying reading an implemented: ${variable}`);
|
|
273
|
-
}
|
|
274
271
|
if (!import_process.default.env[variable] && this.FOUNDAMENTAL_ENVIRONMENT_VARIABLES.includes(variable)) {
|
|
275
272
|
throw new Error(`Missing necessary property for ${variable}`);
|
|
276
273
|
} else if (!import_process.default.env[variable]) {
|
|
@@ -316,7 +313,7 @@ var import_promises = __toESM(require("fs/promises"), 1);
|
|
|
316
313
|
|
|
317
314
|
// ../../packages/constants/src/Constants.ts
|
|
318
315
|
var CONSTANTS = {
|
|
319
|
-
cliVersion: "1.
|
|
316
|
+
cliVersion: "1.1.4",
|
|
320
317
|
backendVersion: 1,
|
|
321
318
|
backendPort: 5088,
|
|
322
319
|
workerVersion: 2,
|
package/package.json
CHANGED
|
@@ -260,9 +260,6 @@ var ProcessENVManagerClass = class {
|
|
|
260
260
|
*/
|
|
261
261
|
this.getEnvVariable = (variable) => {
|
|
262
262
|
Affirm_default(variable, `Cannot read an undefined variable`);
|
|
263
|
-
if (!this.FOUNDAMENTAL_ENVIRONMENT_VARIABLES.includes(variable) || !this.ENVIRONMENT_VARIABLES.includes(variable)) {
|
|
264
|
-
console.warn(`Trying reading an implemented: ${variable}`);
|
|
265
|
-
}
|
|
266
263
|
if (!import_process.default.env[variable] && this.FOUNDAMENTAL_ENVIRONMENT_VARIABLES.includes(variable)) {
|
|
267
264
|
throw new Error(`Missing necessary property for ${variable}`);
|
|
268
265
|
} else if (!import_process.default.env[variable]) {
|
|
@@ -308,7 +305,7 @@ var import_promises = __toESM(require("fs/promises"), 1);
|
|
|
308
305
|
|
|
309
306
|
// ../../packages/constants/src/Constants.ts
|
|
310
307
|
var CONSTANTS = {
|
|
311
|
-
cliVersion: "1.
|
|
308
|
+
cliVersion: "1.1.4",
|
|
312
309
|
backendVersion: 1,
|
|
313
310
|
backendPort: 5088,
|
|
314
311
|
workerVersion: 2,
|