everything-dev 0.0.5 → 0.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "everything-dev",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "bos": "./src/cli.ts"
@@ -264,6 +264,12 @@ export const spawnRemoteHost = (
264
264
  return yield* Effect.fail(new Error("HOST_REMOTE_URL not provided for remote host"));
265
265
  }
266
266
 
267
+ if (config.env) {
268
+ for (const [key, value] of Object.entries(config.env)) {
269
+ process.env[key] = value;
270
+ }
271
+ }
272
+
267
273
  callbacks.onStatus(config.name, "starting");
268
274
 
269
275
  const configDir = getConfigDir();