sprint-es 0.0.104 → 0.0.106

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/cjs/cli.cjs CHANGED
@@ -451,7 +451,7 @@ async function main() {
451
451
  process.exit(1);
452
452
  }
453
453
  }
454
- main().catch((err) => {
454
+ main().then(() => process.exit(0)).catch((err) => {
455
455
  console.error(err);
456
456
  process.exit(1);
457
457
  });
package/dist/esm/cli.js CHANGED
@@ -432,7 +432,7 @@ async function main() {
432
432
  process.exit(1);
433
433
  }
434
434
  }
435
- main().catch((err) => {
435
+ main().then(() => process.exit(0)).catch((err) => {
436
436
  console.error(err);
437
437
  process.exit(1);
438
438
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprint-es",
3
- "version": "0.0.104",
3
+ "version": "0.0.106",
4
4
  "description": "Sprint - Quickly API",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",