codesight 1.1.0 → 1.1.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/README.md CHANGED
@@ -225,7 +225,10 @@ jobs:
225
225
  runs-on: ubuntu-latest
226
226
  steps:
227
227
  - uses: actions/checkout@v4
228
- - run: npx codesight
228
+ - uses: actions/setup-node@v4
229
+ with:
230
+ node-version: 20
231
+ - run: npm install -g codesight && codesight
229
232
  - uses: actions/upload-artifact@v4
230
233
  with:
231
234
  name: codesight
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ import { calculateTokenStats } from "./detectors/tokens.js";
14
14
  import { writeOutput } from "./formatter.js";
15
15
  import { generateAIConfigs } from "./generators/ai-config.js";
16
16
  import { generateHtmlReport } from "./generators/html-report.js";
17
- const VERSION = "1.1.0";
17
+ const VERSION = "1.1.1";
18
18
  const BRAND = "codesight";
19
19
  function printHelp() {
20
20
  console.log(`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codesight",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "See your codebase clearly. Universal AI context generator that maps routes, schema, components, dependencies, and more for Claude Code, Cursor, Copilot, Codex, and any AI coding tool.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {