rip-lang 3.13.7 → 3.13.8

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/bin/rip CHANGED
@@ -12,7 +12,7 @@ import packageJson from '../package.json' with { type: 'json' };
12
12
  const __filename = fileURLToPath(import.meta.url);
13
13
  const __dirname = dirname(__filename);
14
14
 
15
- // Set NODE_PATH so spawned processes and workers can resolve @rip-lang/* packages
15
+ // Set NODE_PATH so spawned child processes can resolve @rip-lang/* packages
16
16
  const _nodeModules = join(__dirname, '..', '..');
17
17
  if (!process.env.NODE_PATH?.split(':').includes(_nodeModules)) {
18
18
  process.env.NODE_PATH = [_nodeModules, process.env.NODE_PATH].filter(Boolean).join(':');