oden-forge 2.2.0 → 2.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.
- package/bin/oden-forge.js +2 -1
- package/package.json +1 -1
package/bin/oden-forge.js
CHANGED
|
@@ -5,11 +5,12 @@ const { program } = require('commander');
|
|
|
5
5
|
const fs = require('fs-extra');
|
|
6
6
|
const path = require('path');
|
|
7
7
|
const { execSync } = require('child_process');
|
|
8
|
+
const pkg = require('../package.json');
|
|
8
9
|
|
|
9
10
|
program
|
|
10
11
|
.name('oden-forge')
|
|
11
12
|
.description('Documentation-First Development Toolkit for Claude Code')
|
|
12
|
-
.version(
|
|
13
|
+
.version(pkg.version);
|
|
13
14
|
|
|
14
15
|
program
|
|
15
16
|
.command('install')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oden-forge",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Documentation-First Development Toolkit for Claude Code - Create professional projects with built-in methodology, Teams orchestration, and MCP management",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|