@nometria-ai/nom 0.2.0 → 0.2.1

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/package.json +1 -1
  2. package/src/cli.js +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nometria-ai/nom",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Deploy any project to any cloud from your terminal. One command, zero config.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -56,6 +56,12 @@ if (values.version) {
56
56
  process.exit(0);
57
57
  }
58
58
 
59
+ // Ensure Ctrl+C always exits cleanly
60
+ process.on('SIGINT', () => {
61
+ console.log('\n');
62
+ process.exit(130);
63
+ });
64
+
59
65
  const command = positionals[0] || 'deploy';
60
66
 
61
67
  if (values.help) {