pkg-pr-new 0.0.19 → 0.0.20

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/index.ts CHANGED
@@ -331,7 +331,7 @@ const main = defineCommand({
331
331
  },
332
332
  });
333
333
 
334
- runMain(main);
334
+ runMain(main).then(() => process.exit(0)).catch(() => process.exit(1));
335
335
 
336
336
  // TODO: we'll add support for yarn if users hit issues with npm
337
337
  async function resolveTarball(pm: "npm" | "pnpm", p: string) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pkg-pr-new",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "type": "module",