@naturalcycles/nodejs-lib 15.20.0 → 15.20.1
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/dist/exec2/exec2.js +1 -1
- package/package.json +2 -2
- package/src/exec2/exec2.ts +1 -1
package/dist/exec2/exec2.js
CHANGED
|
@@ -264,7 +264,7 @@ class Exec2 {
|
|
|
264
264
|
if (isSuccessful && !opt.logFinish)
|
|
265
265
|
return;
|
|
266
266
|
console.log([
|
|
267
|
-
isSuccessful ? '
|
|
267
|
+
isSuccessful ? ' ✓' : ' ×',
|
|
268
268
|
white(opt.name || _substringAfterLast(cmd, '/')),
|
|
269
269
|
...((!opt.name && opt.args) || []),
|
|
270
270
|
dimGrey('took ' + _since(started)),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturalcycles/nodejs-lib",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "15.20.
|
|
4
|
+
"version": "15.20.1",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@naturalcycles/js-lib": "^15",
|
|
7
7
|
"@types/js-yaml": "^4",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/through2-concurrent": "^2",
|
|
26
|
-
"@naturalcycles/dev-lib": "19.
|
|
26
|
+
"@naturalcycles/dev-lib": "19.32.0"
|
|
27
27
|
},
|
|
28
28
|
"exports": {
|
|
29
29
|
".": "./dist/index.js",
|
package/src/exec2/exec2.ts
CHANGED
|
@@ -305,7 +305,7 @@ class Exec2 {
|
|
|
305
305
|
|
|
306
306
|
console.log(
|
|
307
307
|
[
|
|
308
|
-
isSuccessful ? '
|
|
308
|
+
isSuccessful ? ' ✓' : ' ×',
|
|
309
309
|
white(opt.name || _substringAfterLast(cmd, '/')),
|
|
310
310
|
...((!opt.name && (opt as SpawnOptions).args) || []),
|
|
311
311
|
dimGrey('took ' + _since(started)),
|