@nghiapt/kit 1.0.2 → 1.0.4

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/index.js +8 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -27,12 +27,18 @@ const OPTIONS = [
27
27
  {
28
28
  label: 'Install Global (Recommended)',
29
29
  desc: 'Copies to ~/.gemini/antigravity/global_workflows',
30
- action: async () => await installWorkflows(GLOBAL_DEST, 'Global')
30
+ action: async () => {
31
+ await installWorkflows(GLOBAL_DEST, 'Global');
32
+ process.exit(0);
33
+ }
31
34
  },
32
35
  {
33
36
  label: 'Install Only on Context Project',
34
37
  desc: 'Copies to ./.agent/workflows',
35
- action: async () => await installWorkflows(LOCAL_DEST, 'Local Project')
38
+ action: async () => {
39
+ await installWorkflows(LOCAL_DEST, 'Local Project');
40
+ process.exit(0);
41
+ }
36
42
  },
37
43
  {
38
44
  label: 'Exit',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nghiapt/kit",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "The 'Native Gemini' Agentic Framework. Turn your IDE into an autonomous coding partner.",
5
5
  "main": "./bin/index.js",
6
6
  "bin": {