@nattyjs/common 0.0.1-beta.34 → 0.0.1-beta.36

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/index.cjs CHANGED
@@ -629,6 +629,10 @@ class AbstractRunner {
629
629
  }
630
630
  }
631
631
  );
632
+ child.stderr.on("data", (data) => {
633
+ const writeData = data.toString().replace(/\r\n|\n/, "");
634
+ console.log(writeData);
635
+ });
632
636
  child.on("close", (code) => {
633
637
  if (code === 0) {
634
638
  resolve(null);
package/dist/index.mjs CHANGED
@@ -612,6 +612,10 @@ class AbstractRunner {
612
612
  }
613
613
  }
614
614
  );
615
+ child.stderr.on("data", (data) => {
616
+ const writeData = data.toString().replace(/\r\n|\n/, "");
617
+ console.log(writeData);
618
+ });
615
619
  child.on("close", (code) => {
616
620
  if (code === 0) {
617
621
  resolve(null);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattyjs/common",
3
- "version": "0.0.1-beta.34",
3
+ "version": "0.0.1-beta.36",
4
4
  "description": "Now I’m the model of a modern major general / The venerated Virginian veteran whose men are all / Lining up, to put me up on a pedestal / Writin’ letters to relatives / Embellishin’ my elegance and eloquence / But the elephant is in the room / The truth is in ya face when ya hear the British cannons go / BOOM",
5
5
  "keywords": [],
6
6
  "author": "ajayojha <ojhaajay@outlook.com>",
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "20.3.1",
24
- "@nattyjs/types": "0.0.1-beta.34",
24
+ "@nattyjs/types": "0.0.1-beta.36",
25
25
  "unbuild": "1.2.1"
26
26
  }
27
27
  }