jsdoczoom 0.4.5 → 0.4.11
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/test/barrel.test.js +77 -0
- package/dist/test/cache.test.js +222 -0
- package/dist/test/cli.test.js +479 -0
- package/dist/test/drilldown-barrel.test.js +383 -0
- package/dist/test/drilldown.test.js +469 -0
- package/dist/test/errors.test.js +26 -0
- package/dist/test/eslint-engine.test.js +130 -0
- package/dist/test/eslint-plugin.test.js +291 -0
- package/dist/test/file-discovery.test.js +72 -0
- package/dist/test/jsdoc-parser.test.js +353 -0
- package/dist/test/lint.test.js +413 -0
- package/dist/test/selector.test.js +93 -0
- package/dist/test/type-declarations.test.js +321 -0
- package/dist/test/validate.test.js +361 -0
- package/package.json +3 -7
- package/types/test/barrel.test.d.ts +1 -0
- package/types/test/cache.test.d.ts +8 -0
- package/types/test/cli.test.d.ts +1 -0
- package/types/test/drilldown-barrel.test.d.ts +1 -0
- package/types/test/drilldown.test.d.ts +1 -0
- package/types/test/errors.test.d.ts +1 -0
- package/types/test/eslint-engine.test.d.ts +6 -0
- package/types/test/eslint-plugin.test.d.ts +1 -0
- package/types/test/file-discovery.test.d.ts +1 -0
- package/types/test/jsdoc-parser.test.d.ts +1 -0
- package/types/test/lint.test.d.ts +9 -0
- package/types/test/selector.test.d.ts +1 -0
- package/types/test/type-declarations.test.d.ts +1 -0
- package/types/test/validate.test.d.ts +1 -0
- /package/dist/{barrel.js → src/barrel.js} +0 -0
- /package/dist/{cache.js → src/cache.js} +0 -0
- /package/dist/{cli.js → src/cli.js} +0 -0
- /package/dist/{drilldown.js → src/drilldown.js} +0 -0
- /package/dist/{errors.js → src/errors.js} +0 -0
- /package/dist/{eslint-engine.js → src/eslint-engine.js} +0 -0
- /package/dist/{eslint-plugin.js → src/eslint-plugin.js} +0 -0
- /package/dist/{file-discovery.js → src/file-discovery.js} +0 -0
- /package/dist/{index.js → src/index.js} +0 -0
- /package/dist/{jsdoc-parser.js → src/jsdoc-parser.js} +0 -0
- /package/dist/{lint.js → src/lint.js} +0 -0
- /package/dist/{selector.js → src/selector.js} +0 -0
- /package/dist/{skill-text.js → src/skill-text.js} +0 -0
- /package/dist/{type-declarations.js → src/type-declarations.js} +0 -0
- /package/dist/{types.js → src/types.js} +0 -0
- /package/dist/{validate.js → src/validate.js} +0 -0
- /package/types/{barrel.d.ts → src/barrel.d.ts} +0 -0
- /package/types/{cache.d.ts → src/cache.d.ts} +0 -0
- /package/types/{cli.d.ts → src/cli.d.ts} +0 -0
- /package/types/{drilldown.d.ts → src/drilldown.d.ts} +0 -0
- /package/types/{errors.d.ts → src/errors.d.ts} +0 -0
- /package/types/{eslint-engine.d.ts → src/eslint-engine.d.ts} +0 -0
- /package/types/{eslint-plugin.d.ts → src/eslint-plugin.d.ts} +0 -0
- /package/types/{file-discovery.d.ts → src/file-discovery.d.ts} +0 -0
- /package/types/{index.d.ts → src/index.d.ts} +0 -0
- /package/types/{jsdoc-parser.d.ts → src/jsdoc-parser.d.ts} +0 -0
- /package/types/{lint.d.ts → src/lint.d.ts} +0 -0
- /package/types/{selector.d.ts → src/selector.d.ts} +0 -0
- /package/types/{skill-text.d.ts → src/skill-text.d.ts} +0 -0
- /package/types/{type-declarations.d.ts → src/type-declarations.d.ts} +0 -0
- /package/types/{types.d.ts → src/types.d.ts} +0 -0
- /package/types/{validate.d.ts → src/validate.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jsdoczoom",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.11",
|
|
4
4
|
"description": "CLI tool for extracting JSDoc summaries at configurable depths",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -35,19 +35,15 @@
|
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"typecheck": "tsc --noEmit",
|
|
38
|
-
"build": "
|
|
39
|
-
"build:cli": "tsc --build tsconfig.build.json",
|
|
40
|
-
"build:claude-code-hooks": "cd ../claude-code-hooks && yarn build",
|
|
41
|
-
"build:hooks": "claude-code-hooks -i \"src/hooks/*.ts\" -o \"../../plugins/jsdoczoom/hooks/hooks.json\"",
|
|
38
|
+
"build": "tsc --build",
|
|
42
39
|
"test": "vitest run",
|
|
43
40
|
"lint": "biome check --write --unsafe --max-diagnostics 500 .",
|
|
44
41
|
"release": "bash ../../scripts/release-package.sh jsdoczoom",
|
|
45
42
|
"release:dry-run": "bash ../../scripts/release-package.sh jsdoczoom --dry-run"
|
|
46
43
|
},
|
|
47
44
|
"dependencies": {
|
|
48
|
-
"@goodfoot/claude-code-hooks": "workspace:*",
|
|
49
45
|
"@typescript-eslint/parser": "^8.55.0",
|
|
50
|
-
"eslint": "^
|
|
46
|
+
"eslint": "^9.0.0",
|
|
51
47
|
"eslint-plugin-jsdoc": "^62.5.5",
|
|
52
48
|
"glob": "^13.0.3",
|
|
53
49
|
"ignore": "^7.0.5",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tests for the content-hash-based disk cache module. Verifies content hashing,
|
|
3
|
+
* cache read/write operations, directory creation, graceful error handling,
|
|
4
|
+
* concurrency safety, and mode namespacing using temporary test directories.
|
|
5
|
+
*
|
|
6
|
+
* @summary Unit and integration tests for cache operations
|
|
7
|
+
*/
|
|
8
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tests for the lint module which runs comprehensive JSDoc quality checks
|
|
3
|
+
* using the ESLint engine. Uses temp directories with controlled fixtures
|
|
4
|
+
* to verify diagnostic output, summary statistics, limit capping, file
|
|
5
|
+
* filtering, and error handling.
|
|
6
|
+
*
|
|
7
|
+
* @summary Unit and integration tests for lint() and lintFiles()
|
|
8
|
+
*/
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|