@quatrain/worker 1.1.12 → 1.1.13

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/lib/Worker.js +2 -2
  2. package/package.json +6 -6
package/lib/Worker.js CHANGED
@@ -24,10 +24,10 @@ class Worker extends core_1.Core {
24
24
  return new Promise((resolve, reject) => {
25
25
  const child = (0, child_process_1.spawn)(command, args, { cwd });
26
26
  child.stdout.on('data', (data) => {
27
- Worker.info(data);
27
+ Worker.debug(data.toString());
28
28
  });
29
29
  child.stderr.on('data', (data) => {
30
- Worker.info(data);
30
+ Worker.debug(data.toString());
31
31
  });
32
32
  child.on('close', (code) => {
33
33
  if (code !== 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quatrain/worker",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "description": "Container Worker helpers",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -24,7 +24,7 @@
24
24
  "typescript": "^5.1.5"
25
25
  },
26
26
  "dependencies": {
27
- "@quatrain/core": "^1.1.10",
27
+ "@quatrain/core": "^1.1.11",
28
28
  "axios": "^1.7.7",
29
29
  "fs-extra": "^11.2.0",
30
30
  "node-fetch-native": "^1.6.4"
@@ -35,9 +35,9 @@
35
35
  "wbuild": "tsc --watch",
36
36
  "bump-to": "yarn version",
37
37
  "hash": "node ../../bin/hashFolder.js",
38
- "hash_persist": "yarn hash > .hash_latest.txt",
39
- "hash_compare": "yarn hash > .hash_newest.txt && cmp -s .hash_latest.txt .hash_newest.txt",
40
- "publish": "yarn hash_compare || yarn publish_process",
41
- "publish_process": "yarn version patch && yarn build && yarn npm publish --access public && yarn hash_persist"
38
+ "hash:persist": "yarn hash > .hash_latest.txt",
39
+ "hash:compare": "yarn hash > .hash_newest.txt && cmp -s .hash_latest.txt .hash_newest.txt",
40
+ "publish": "yarn hash:compare || yarn publish:process",
41
+ "publish:process": "yarn version patch && yarn build && yarn npm publish --access public && yarn hash:persist"
42
42
  }
43
43
  }