Skip to content

Commit 24168c9

Browse files
committed
(minor) upgrade some deps + PM2_CONCUTTENT_ACTIONS to default for test
1 parent 91a5eae commit 24168c9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/API.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ API.prototype.gracefulReload = function(process_name, opts, cb) {
403403
that._startJson(process_name, commander, 'softReloadProcessId');
404404
else {
405405
if (opts && !opts.updateEnv)
406-
Common.printOut(chalk.dim('Restarts are now immutable, to update environment or conf use --update-env'));
406+
Common.printOut(chalk.dim('Reloads are now immutable, to update environment or conf use --update-env'));
407407
that._operate('softReloadProcessId', process_name, opts, cb);
408408
}
409409
};
@@ -427,7 +427,7 @@ API.prototype.reload = function(process_name, opts, cb) {
427427
that._startJson(process_name, opts, 'reloadProcessId');
428428
else {
429429
if (opts && !opts.updateEnv)
430-
Common.printOut(chalk.dim('Restarts are now immutable, to update environment or conf use --update-env'));
430+
Common.printOut(chalk.dim('Reloads are now immutable, to update environment or conf use --update-env'));
431431
that._operate('reloadProcessId', process_name, opts, cb);
432432
}
433433
};

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"description": "Production process manager for Node.JS applications with a built-in load balancer.",
9999
"main": "index.js",
100100
"scripts": {
101-
"test": "PM2_CONCURRENT_ACTIONS=1 NODE_ENV=test bash test/pm2_programmatic_tests.sh && NODE_ENV=test bash test/pm2_behavior_tests.sh"
101+
"test": "NODE_ENV=test bash test/pm2_programmatic_tests.sh && NODE_ENV=test bash test/pm2_behavior_tests.sh"
102102
},
103103
"keywords": [
104104
"cli",
@@ -171,13 +171,13 @@
171171
"pmx": "^0.6",
172172
"semver": "^5.2",
173173
"shelljs": "0.7.5",
174-
"source-map-support": "^0.4",
174+
"source-map-support": "^0.4.6",
175175
"vizion": "^0.2",
176176
"yamljs": "0.2.8"
177177
},
178178
"devDependencies": {
179179
"mocha": "^3",
180-
"should": "^10",
180+
"should": "^11",
181181
"better-assert": "^1.0.0"
182182
},
183183
"optionalDependencies": {

0 commit comments

Comments
 (0)