@adunne09/waldo 0.0.0-dev-202603302335 → 0.0.0-dev-202604100423

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 (2) hide show
  1. package/bin/waldo +5 -1
  2. package/package.json +6 -6
package/bin/waldo CHANGED
@@ -26,12 +26,16 @@ function findNodeModulesRoot(target) {
26
26
  function createRuntimeEnv(target) {
27
27
  const nodeModulesRoot = findNodeModulesRoot(target);
28
28
  if (!nodeModulesRoot) {
29
- return process.env;
29
+ return {
30
+ ...process.env,
31
+ NODE_ENV: "production",
32
+ };
30
33
  }
31
34
 
32
35
  const existingNodePath = process.env.NODE_PATH;
33
36
  return {
34
37
  ...process.env,
38
+ NODE_ENV: "production",
35
39
  NODE_PATH: existingNodePath
36
40
  ? `${nodeModulesRoot}${path.delimiter}${existingNodePath}`
37
41
  : nodeModulesRoot,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adunne09/waldo",
3
- "version": "0.0.0-dev-202603302335",
3
+ "version": "0.0.0-dev-202604100423",
4
4
  "waldoReleaseTag": "dev",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,10 +10,10 @@
10
10
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
11
11
  },
12
12
  "optionalDependencies": {
13
- "@adunne09/waldo-darwin-arm64": "0.0.0-dev-202603302335",
14
- "@adunne09/waldo-darwin-x64": "0.0.0-dev-202603302335",
15
- "@adunne09/waldo-linux-arm64": "0.0.0-dev-202603302335",
16
- "@adunne09/waldo-linux-x64": "0.0.0-dev-202603302335",
17
- "@adunne09/waldo-windows-x64": "0.0.0-dev-202603302335"
13
+ "@adunne09/waldo-darwin-arm64": "0.0.0-dev-202604100423",
14
+ "@adunne09/waldo-darwin-x64": "0.0.0-dev-202604100423",
15
+ "@adunne09/waldo-linux-arm64": "0.0.0-dev-202604100423",
16
+ "@adunne09/waldo-linux-x64": "0.0.0-dev-202604100423",
17
+ "@adunne09/waldo-windows-x64": "0.0.0-dev-202604100423"
18
18
  }
19
19
  }