dcp-worker 3.2.34 → 3.2.35
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/dcp-evaluator-start +0 -12
- package/package.json +2 -2
package/bin/dcp-evaluator-start
CHANGED
|
@@ -55,12 +55,6 @@ function main() {
|
|
|
55
55
|
alias: ['r'],
|
|
56
56
|
desc: 'Path to evaluator as a module identitifer',
|
|
57
57
|
})
|
|
58
|
-
.option('evaluator-lib-dir', {
|
|
59
|
-
alias: ['l'],
|
|
60
|
-
deprecated: true,
|
|
61
|
-
desc: 'Location of evaluator libraries',
|
|
62
|
-
default: dcpConfig.evaluator.libDir || undefined
|
|
63
|
-
})
|
|
64
58
|
.option('sandbox-libexec-dir', {
|
|
65
59
|
desc: 'Location of sandbox setup files',
|
|
66
60
|
default: path.resolve(dcpClientDir, 'libexec', 'sandbox'),
|
|
@@ -128,12 +122,6 @@ function main() {
|
|
|
128
122
|
if (!options.stdio && options.port)
|
|
129
123
|
args = args.concat(['-p', options.port]);
|
|
130
124
|
|
|
131
|
-
if (options.evaluatorLibDir) {
|
|
132
|
-
console.warn(`Note: --evaluator-lib-dir (-l) is deprecated. Please pass this argument to the evalutor 'dcp-evaluator-start ... -- -l ${options.evaluatorLibDir}'`);
|
|
133
|
-
options.evaluatorLibDir = path.resolve(options.prefix, 'etc', options.evaluatorLibDir);
|
|
134
|
-
args = args.concat(['-l', options.evaluatorLibDir]);
|
|
135
|
-
}
|
|
136
|
-
|
|
137
125
|
/* Decode log-level parameters and translate as appropriate for the type of evaluator in use */
|
|
138
126
|
if (options.debugLogLevel || options.debugLogLevel === 0)
|
|
139
127
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dcp-worker",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.35",
|
|
4
4
|
"description": "JavaScript portion of DCP Workers for Node.js",
|
|
5
5
|
"main": "bin/dcp-worker",
|
|
6
6
|
"keywords": [
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"blessed": "^0.1.81",
|
|
41
41
|
"blessed-contrib": "^4.11.0",
|
|
42
42
|
"chalk": "^4.1.0",
|
|
43
|
-
"dcp-client": "4.3.
|
|
43
|
+
"dcp-client": "4.3.5",
|
|
44
44
|
"kvin": "^1.2.7",
|
|
45
45
|
"posix-getopt": "^1.2.1",
|
|
46
46
|
"semver": "^7.3.8",
|