pencil-team 0.2.1 → 0.2.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/index.js +1 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9605,12 +9605,7 @@ Shutting down...`);
9605
9605
  sync.disconnect();
9606
9606
  console.log("Closing Pencil...");
9607
9607
  closePencil();
9608
- try {
9609
- if (fs4.existsSync(filePath)) {
9610
- fs4.unlinkSync(filePath);
9611
- console.log("Cleaned up temp file.");
9612
- }
9613
- } catch {}
9608
+ console.log(`File saved: ${filePath}`);
9614
9609
  process.exit(0);
9615
9610
  };
9616
9611
  process.on("SIGINT", shutdown);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pencil-team",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "pencil-team": "dist/index.js"