neex 0.7.10 → 0.7.11
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/README.md +1 -1
- package/dist/src/runner.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
package/dist/src/runner.js
CHANGED
|
@@ -44,7 +44,7 @@ const path = __importStar(require("path"));
|
|
|
44
44
|
const chalk_1 = __importDefault(require("chalk"));
|
|
45
45
|
const logger_1 = __importDefault(require("./logger"));
|
|
46
46
|
const p_map_1 = __importDefault(require("p-map"));
|
|
47
|
-
const
|
|
47
|
+
const npm_run_path_1 = require("npm-run-path");
|
|
48
48
|
const fs = __importStar(require("fs"));
|
|
49
49
|
class Runner {
|
|
50
50
|
constructor(options) {
|
|
@@ -169,7 +169,7 @@ class Runner {
|
|
|
169
169
|
const [cmd, ...args] = command.split(' ');
|
|
170
170
|
const env = {
|
|
171
171
|
...process.env,
|
|
172
|
-
...
|
|
172
|
+
...(0, npm_run_path_1.npmRunPathEnv)(),
|
|
173
173
|
FORCE_COLOR: this.options.color ? '1' : '0'
|
|
174
174
|
};
|
|
175
175
|
const proc = (0, child_process_1.spawn)(cmd, args, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "neex",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.11",
|
|
4
4
|
"description": "A command-line interface for managing Neex projects, designed to simplify your development workflow.",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"ts-node": "^10.9.2"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
|
-
"node": ">=
|
|
64
|
+
"node": ">=20.0.0"
|
|
65
65
|
},
|
|
66
66
|
"repository": {
|
|
67
67
|
"type": "git",
|