cxgrd 0.1.34 → 0.1.36
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/dist/index.js +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -105,7 +105,7 @@ async function main() {
|
|
|
105
105
|
.command('watch [path]', 'Monitor project for real-time architecture analysis', (y) => y
|
|
106
106
|
.positional('path', { describe: 'Project path (default: current directory)', type: 'string' })
|
|
107
107
|
.option('debounce', { type: 'number', default: 500 }), async (argv) => { (0, telemetry_1.trackEvent)('cli_watch'); await (0, watch_1.watchCommand)(argv.path, { debounce: argv.debounce }); })
|
|
108
|
-
.version('0.1.
|
|
108
|
+
.version('0.1.36')
|
|
109
109
|
.help()
|
|
110
110
|
.alias('h', 'help')
|
|
111
111
|
.epilogue(chalk_1.default.gray('For more information, visit: https://cxgrd.com'))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cxgrd",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.36",
|
|
4
4
|
"description": "AI context guardrail CLI — dependency-aware architecture safety for AI-assisted development",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"prepublishOnly": "npm run build"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"yargs": "^17.7.2",
|
|
23
22
|
"chalk": "^5.3.0",
|
|
24
23
|
"chokidar": "^3.5.3",
|
|
25
|
-
"typescript": "^5.3.3"
|
|
24
|
+
"typescript": "^5.3.3",
|
|
25
|
+
"yargs": "^17.7.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"tsx": "^4.7.0",
|
|
29
28
|
"@types/node": "^20.10.6",
|
|
30
|
-
"@types/yargs": "^17.0.31"
|
|
29
|
+
"@types/yargs": "^17.0.31",
|
|
30
|
+
"tsx": "^4.7.0"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
33
|
"node": ">=18.0.0"
|