@ejfdelgado/ejflab-back 1.32.14 → 1.32.15

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/srv/MyShell.mjs +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ejfdelgado/ejflab-back",
3
- "version": "1.32.14",
3
+ "version": "1.32.15",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/ejfdelgado/ejflab-back.git"
package/srv/MyShell.mjs CHANGED
@@ -129,11 +129,11 @@ export class MyShell {
129
129
  exec(command, {
130
130
  cwd: workingDirectory
131
131
  }, function (err, stdout, stderr) {
132
- console.log(stdout);
132
+ //console.log(stdout);
133
133
  if (err !== null) {
134
134
  reject(err);
135
135
  } else {
136
- resolve();
136
+ resolve({stdout, stderr});
137
137
  }
138
138
  });
139
139
  });