@cregis-dev/cckit 0.6.7 → 0.6.9
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/package.json +1 -1
- package/src/commands/init.js +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cregis-dev/cckit",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.9",
|
|
4
4
|
"description": "Enterprise-grade Claude Code configuration toolkit — orchestrates external tools to set up unified rules, skills, MCP and methodology for teams",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/commands/init.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
import path from 'node:path'
|
|
8
8
|
import fse from 'fs-extra'
|
|
9
9
|
import { loadRegistry, resolvePlugins, resolveModelId } from '../core/registry.js'
|
|
10
|
-
import { mergeConfig, DEFAULT_API_URL } from '../core/config.js'
|
|
10
|
+
import { mergeConfig, DEFAULT_API_URL, VERSION } from '../core/config.js'
|
|
11
11
|
import { orchestrate } from '../core/orchestrator.js'
|
|
12
12
|
import { MANIFEST_REL, buildManifest, writeManifest } from '../utils/manifest.js'
|
|
13
13
|
import { createLogger } from '../utils/logger.js'
|
|
@@ -26,8 +26,6 @@ const SCAFFOLD_DIRS = [
|
|
|
26
26
|
'docs'
|
|
27
27
|
]
|
|
28
28
|
|
|
29
|
-
const VERSION = '0.5.0'
|
|
30
|
-
|
|
31
29
|
/**
|
|
32
30
|
* Run the init command.
|
|
33
31
|
*
|