rip-lang 3.13.7 → 3.13.9
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 +1 -1
- package/docs/dist/rip.js +111 -40
- package/docs/dist/rip.min.js +2 -2
- package/docs/dist/rip.min.js.br +0 -0
- package/docs/index.html +4 -4
- package/package.json +1 -1
- package/src/browser.js +7 -4
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
|
|
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(':');
|