@getcodesentinel/codesentinel 1.19.1 → 1.21.0
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getcodesentinel/codesentinel",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Structural and evolutionary risk analysis engine for modern TypeScript/JavaScript codebases.",
|
|
6
6
|
"repository": {
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"codesentinel": "dist/index.js"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "tsup",
|
|
22
|
+
"build": "tsup && node ./scripts/copy-html-report-app.mjs",
|
|
23
23
|
"dev": "node --import tsx/esm src/index.ts",
|
|
24
|
-
"prepack": "cp ../../README.md ./README.md && cp ../../LICENSE ./LICENSE && pnpm --filter @codesentinel/core build && pnpm --filter @codesentinel/code-graph build && pnpm --filter @codesentinel/git-analyzer build && pnpm --filter @codesentinel/dependency-firewall build && pnpm --filter @codesentinel/risk-engine build && pnpm --filter @codesentinel/health-engine build && pnpm --filter @codesentinel/reporter build && pnpm --filter @codesentinel/governance build && pnpm run build",
|
|
24
|
+
"prepack": "cp ../../README.md ./README.md && cp ../../LICENSE ./LICENSE && pnpm --filter @codesentinel/core build && pnpm --filter @codesentinel/code-graph build && pnpm --filter @codesentinel/git-analyzer build && pnpm --filter @codesentinel/dependency-firewall build && pnpm --filter @codesentinel/risk-engine build && pnpm --filter @codesentinel/health-engine build && pnpm --filter @codesentinel/reporter build && pnpm --filter @codesentinel/governance build && pnpm --filter @codesentinel/html-report-app build && pnpm run build",
|
|
25
25
|
"test": "vitest run --passWithNoTests"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"@codesentinel/git-analyzer": "^0.1.0",
|
|
36
36
|
"@codesentinel/governance": "^0.1.0",
|
|
37
37
|
"@codesentinel/health-engine": "^0.1.0",
|
|
38
|
+
"@codesentinel/html-report-app": "workspace:*",
|
|
38
39
|
"@codesentinel/reporter": "^0.1.0",
|
|
39
40
|
"@codesentinel/risk-engine": "^0.1.0"
|
|
40
41
|
},
|