Skip to content

Commit 2967726

Browse files
authoredOct 4, 2020
fix: package.main with -- arguments (#1773)
* fix: package.main with -- arguments Fixes #1758 The combination of using a package.main (which sets the script position to index zero) and using the -- stop slurp meant that the arguments had the script appended to the end instead of prepended to the start. The net result meant that when the script was forked, it would drop the first user arg. See diff for details of the fix - a simple check against null. * fix: protect against missing opts
1 parent 273d774 commit 2967726

File tree

6 files changed

+35
-2
lines changed

6 files changed

+35
-2
lines changed
 

‎lib/config/load.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ function load(settings, options, config, callback) {
7474
}
7575
// if the script is found as a result of not being on the command
7676
// line, then we move any of the pre double-dash args in execArgs
77-
const n = options.scriptPosition || options.args.length;
77+
const n = options.scriptPosition === null ?
78+
options.args.length : options.scriptPosition;
79+
7880
options.execArgs = (options.execArgs || [])
7981
.concat(options.args.splice(0, n));
8082
options.scriptPosition = null;

‎lib/monitor/run.js

+2
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ function run(options) {
9797
utils.version.major > 4 // only fork if node version > 4
9898

9999
if (shouldFork) {
100+
// this assumes the first argument is the script and slices it out, since
101+
// we're forking
100102
var forkArgs = cmd.args.slice(1);
101103
var env = utils.merge(options.execOptions.env, process.env);
102104
stdio.push('ipc');

‎lib/monitor/watch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ function filterAndRestart(files) {
177177

178178
// if there's no matches, then test to see if the changed file is the
179179
// running script, if so, let's allow a restart
180-
if (config.options.execOptions.script) {
180+
if (config.options.execOptions && config.options.execOptions.script) {
181181
const script = path.resolve(config.options.execOptions.script);
182182
if (matched.result.length === 0 && script) {
183183
const length = script.length;

‎test/config/load.test.js

+23
Original file line numberDiff line numberDiff line change
@@ -298,4 +298,27 @@ describe('config load', function () {
298298
done();
299299
})
300300
});
301+
302+
it('should support pkg.main and keep user args on args', done => {
303+
process.chdir(path.resolve(pwd, 'test/fixtures/packages/main-and-start'));
304+
const settings = { scriptPosition: 0, script: null, args: [ 'first', 'second' ] };
305+
const options = { ignore: [], watch: [], monitor: [] };
306+
const config = {
307+
run: false,
308+
system: { cwd: '/Users/remy/dev/nodemon/issues/1758' },
309+
required: false,
310+
dirs: [],
311+
timeout: 1000,
312+
options: { ignore: [], watch: [], monitor: [] },
313+
lastStarted: 0,
314+
loaded: []
315+
}
316+
317+
load(settings, options, config, res => {
318+
assert.deepEqual(res.execOptions.args, ['first', 'second']);
319+
done();
320+
})
321+
});
322+
323+
301324
});

‎test/fixtures/packages/main-and-start/index.js

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"main": "./index.js",
3+
"scripts": {
4+
"start": "node index.js"
5+
}
6+
}

0 commit comments

Comments
 (0)
Please sign in to comment.