@aklinker1/check 1.0.1 → 1.0.2

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/dist/utils.mjs +2 -0
  2. package/package.json +6 -1
package/dist/utils.mjs CHANGED
@@ -38,6 +38,8 @@ export async function execAndParse(root, bin, args, parser) {
38
38
  const res = await exec(resolveRoot(root, bin), args, { cwd: root });
39
39
  if (res.exitCode == null)
40
40
  throw Error("Exit code was null");
41
+ if (isDebug())
42
+ console.debug({ bin, args, root, ...res });
41
43
  return parser({
42
44
  code: res.exitCode,
43
45
  stderr: res.stderr,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aklinker1/check",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -39,6 +39,11 @@
39
39
  ],
40
40
  "declaration": true
41
41
  },
42
+ "changelog": {
43
+ "excludeAuthors": [
44
+ "aaronklinker1@gmail.com"
45
+ ]
46
+ },
42
47
  "scripts": {
43
48
  "build": "bunx --bun unbuild",
44
49
  "check": "bun src/cli.ts",