dhurandhar 2.0.1 → 2.0.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.
- package/CHANGELOG.md +8 -0
- package/cli/dhurandhar.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to Dhurandhar will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.0.2] - 2026-04-02
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed --version command exit code (was showing version but exiting with error)
|
|
12
|
+
- Proper exit handling for --version and --help commands
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
8
16
|
## [2.0.1] - 2026-04-02
|
|
9
17
|
|
|
10
18
|
### Fixed
|
package/cli/dhurandhar.js
CHANGED
|
@@ -299,6 +299,9 @@ try {
|
|
|
299
299
|
if (err.code === 'commander.help' || err.code === 'commander.helpDisplayed') {
|
|
300
300
|
process.exit(0);
|
|
301
301
|
}
|
|
302
|
+
if (err.code === 'commander.version') {
|
|
303
|
+
process.exit(0);
|
|
304
|
+
}
|
|
302
305
|
if (err.code === 'commander.unknownCommand') {
|
|
303
306
|
// Already handled by command:* listener above
|
|
304
307
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "dhurandhar",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.2",
|
|
5
5
|
"description": "The world's first AI-powered dharma-centric design framework. 8 Pandava agents + 21 sub-agents guide you from idea to production code. Features → Requirements → Entities → API → HLD → LLD → Implementation → Blessing. Complete with code generation, enterprise integrations, and mythological accuracy.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"system-design",
|