aliasmate 1.3.2 → 1.4.0
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/README.md +96 -10
- package/dist/cli.js +6 -2
- package/dist/cli.js.map +1 -1
- package/dist/commands/changelog.d.ts +9 -0
- package/dist/commands/changelog.d.ts.map +1 -0
- package/dist/commands/changelog.js +72 -0
- package/dist/commands/changelog.js.map +1 -0
- package/dist/commands/edit.d.ts.map +1 -1
- package/dist/commands/edit.js +77 -3
- package/dist/commands/edit.js.map +1 -1
- package/dist/commands/list.d.ts.map +1 -1
- package/dist/commands/list.js +4 -0
- package/dist/commands/list.js.map +1 -1
- package/dist/commands/prev.d.ts +1 -1
- package/dist/commands/prev.d.ts.map +1 -1
- package/dist/commands/prev.js +63 -3
- package/dist/commands/prev.js.map +1 -1
- package/dist/commands/run.d.ts.map +1 -1
- package/dist/commands/run.js +23 -2
- package/dist/commands/run.js.map +1 -1
- package/dist/commands/save.d.ts.map +1 -1
- package/dist/commands/save.js +61 -2
- package/dist/commands/save.js.map +1 -1
- package/dist/storage/index.d.ts +4 -1
- package/dist/storage/index.d.ts.map +1 -1
- package/dist/storage/index.js +3 -1
- package/dist/storage/index.js.map +1 -1
- package/dist/utils/changelog.d.ts +41 -0
- package/dist/utils/changelog.d.ts.map +1 -0
- package/dist/utils/changelog.js +193 -0
- package/dist/utils/changelog.js.map +1 -0
- package/dist/utils/constants.d.ts +1 -1
- package/dist/utils/constants.js +1 -1
- package/dist/utils/env.d.ts +64 -0
- package/dist/utils/env.d.ts.map +1 -0
- package/dist/utils/env.js +200 -0
- package/dist/utils/env.js.map +1 -0
- package/dist/utils/executor.d.ts +2 -1
- package/dist/utils/executor.d.ts.map +1 -1
- package/dist/utils/executor.js +3 -1
- package/dist/utils/executor.js.map +1 -1
- package/dist/utils/llm-generator.d.ts.map +1 -1
- package/dist/utils/llm-generator.js +122 -6
- package/dist/utils/llm-generator.js.map +1 -1
- package/dist/utils/onboarding.d.ts.map +1 -1
- package/dist/utils/onboarding.js +26 -4
- package/dist/utils/onboarding.js.map +1 -1
- package/dist/utils/prompts.d.ts +11 -1
- package/dist/utils/prompts.d.ts.map +1 -1
- package/dist/utils/prompts.js.map +1 -1
- package/package.json +6 -2
- package/whats-new.json +125 -0
package/whats-new.json
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"1.0.0": {
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"date": "2025-11-15",
|
|
5
|
+
"sections": {
|
|
6
|
+
"added": [
|
|
7
|
+
"Initial release with core functionality",
|
|
8
|
+
"`prev` command to save previous shell command",
|
|
9
|
+
"`run` command to execute saved commands",
|
|
10
|
+
"`save` command for interactive command saving",
|
|
11
|
+
"`list` (alias `ls`) command to display all saved commands",
|
|
12
|
+
"`edit` command to modify saved commands",
|
|
13
|
+
"`delete` (alias `rm`) command to remove saved commands",
|
|
14
|
+
"`export` command to backup commands to JSON",
|
|
15
|
+
"`import` command to restore commands from JSON",
|
|
16
|
+
"`config` command to show config file location",
|
|
17
|
+
"Cross-platform support (Linux, macOS, Windows)",
|
|
18
|
+
"Working directory preservation and override",
|
|
19
|
+
"Interactive conflict resolution for imports"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"1.1.0": {
|
|
24
|
+
"version": "1.1.0",
|
|
25
|
+
"date": "2026-01-08",
|
|
26
|
+
"sections": {
|
|
27
|
+
"added": [
|
|
28
|
+
"ESLint configuration with TypeScript support",
|
|
29
|
+
"Prettier configuration for consistent code formatting",
|
|
30
|
+
"Comprehensive JSDoc documentation for all public functions",
|
|
31
|
+
"CONTRIBUTING.md with detailed contributor guidelines",
|
|
32
|
+
"DEV_GUIDE.md for quick development reference",
|
|
33
|
+
"Centralized error handling utilities",
|
|
34
|
+
"Custom error types and exit code enums"
|
|
35
|
+
],
|
|
36
|
+
"changed": [
|
|
37
|
+
"Removed all `any` types, replaced with proper TypeScript interfaces",
|
|
38
|
+
"Standardized error handling across all commands",
|
|
39
|
+
"Improved type safety for inquirer prompt responses",
|
|
40
|
+
"Better code organization with centralized error utilities"
|
|
41
|
+
],
|
|
42
|
+
"fixed": [
|
|
43
|
+
"Proper typing for execa error handling",
|
|
44
|
+
"Consistent exit codes across all error scenarios"
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"1.2.0": {
|
|
49
|
+
"version": "1.2.0",
|
|
50
|
+
"date": "2026-01-11",
|
|
51
|
+
"sections": {
|
|
52
|
+
"added": [
|
|
53
|
+
"`search` (alias `find`) command to search commands by name, text, or directory",
|
|
54
|
+
"Automatic backup creation before importing commands",
|
|
55
|
+
"Directory existence indicator in list output",
|
|
56
|
+
"Command creation timestamp display in list output",
|
|
57
|
+
"Exit code display for failed command executions",
|
|
58
|
+
"Comprehensive input validation for command names",
|
|
59
|
+
"Directory existence validation with warnings",
|
|
60
|
+
"Path normalization to absolute paths for consistency",
|
|
61
|
+
"Global uncaught exception handler"
|
|
62
|
+
],
|
|
63
|
+
"changed": [
|
|
64
|
+
"Delete command now shows details of what will be deleted",
|
|
65
|
+
"Export command creates parent directories if they don't exist",
|
|
66
|
+
"Import command validates each alias structure before processing",
|
|
67
|
+
"All user inputs are trimmed before processing",
|
|
68
|
+
"Enhanced CLI help messages for unknown commands"
|
|
69
|
+
],
|
|
70
|
+
"fixed": [
|
|
71
|
+
"Atomic write operations prevent config file corruption during saves",
|
|
72
|
+
"Proper validation of command names to prevent special characters",
|
|
73
|
+
"Input trimming prevents whitespace-related issues"
|
|
74
|
+
]
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"1.3.0": {
|
|
78
|
+
"version": "1.3.0",
|
|
79
|
+
"date": "2026-01-12",
|
|
80
|
+
"sections": {
|
|
81
|
+
"added": [
|
|
82
|
+
"Onboarding experience with welcome message for first-time users",
|
|
83
|
+
"Version upgrade notifications with feature highlights",
|
|
84
|
+
"Path Mode feature: Commands can run in saved or current directory",
|
|
85
|
+
"Path mode selection during `aliasmate save` command",
|
|
86
|
+
"Path mode display in list output with icons (📁 Saved / 📍 Current)",
|
|
87
|
+
"LLM Integration with automatic 'llm' command creation",
|
|
88
|
+
"Comprehensive llm.txt documentation file generation"
|
|
89
|
+
],
|
|
90
|
+
"changed": [
|
|
91
|
+
"Enhanced list command output with path mode information",
|
|
92
|
+
"Better visual hierarchy in command listings",
|
|
93
|
+
"More informative output when saving commands"
|
|
94
|
+
]
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"1.3.1": {
|
|
98
|
+
"version": "1.3.1",
|
|
99
|
+
"date": "2026-01-12",
|
|
100
|
+
"sections": {
|
|
101
|
+
"fixed": [
|
|
102
|
+
"Onboarding display issue - now shows on first install or after upgrades",
|
|
103
|
+
"Onboarding displays on first run regardless of arguments provided",
|
|
104
|
+
"Welcome message appears before any command execution"
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"1.4.0": {
|
|
109
|
+
"version": "1.4.0",
|
|
110
|
+
"date": "2026-01-14",
|
|
111
|
+
"sections": {
|
|
112
|
+
"added": [
|
|
113
|
+
"Automated release script for version management",
|
|
114
|
+
"Cumulative changelog system with whats-new.json",
|
|
115
|
+
"`changelog` command to view version changes",
|
|
116
|
+
"Display cumulative changes for upgrade migrations",
|
|
117
|
+
"Version comparison utilities for semantic versioning"
|
|
118
|
+
],
|
|
119
|
+
"changed": [
|
|
120
|
+
"Onboarding now shows cumulative changes during upgrades",
|
|
121
|
+
"Upgrade messages pull from structured changelog data"
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|