@a16njs/glob-hook 0.3.0 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # @a16njs/glob-hook
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@a16njs/glob-hook.svg)](https://www.npmjs.com/package/@a16njs/glob-hook)
4
+ [![codecov](https://codecov.io/gh/Texarkanine/a16n/graph/badge.svg?flag=glob-hook)](https://codecov.io/gh/Texarkanine/a16n)
4
5
 
5
6
  CLI tool for glob-based file path matching in Claude Code hooks. Part of the [a16n](https://github.com/texarkanine/a16n) project.
6
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a16njs/glob-hook",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "CLI tool for glob-based file path matching in Claude Code hooks",
5
5
  "license": "AGPL-3.0",
6
6
  "author": "Texarkanine",
@@ -9,7 +9,7 @@
9
9
  "url": "git+https://github.com/Texarkanine/a16n.git",
10
10
  "directory": "packages/glob-hook"
11
11
  },
12
- "homepage": "https://github.com/Texarkanine/a16n#readme",
12
+ "homepage": "https://texarkanine.github.io/a16n/glob-hook",
13
13
  "bugs": {
14
14
  "url": "https://github.com/Texarkanine/a16n/issues"
15
15
  },
@@ -53,6 +53,7 @@
53
53
  "clean": "rimraf dist *.tsbuildinfo",
54
54
  "typecheck": "tsc --noEmit",
55
55
  "test": "vitest run",
56
- "test:watch": "vitest"
56
+ "test:watch": "vitest",
57
+ "test:coverage": "vitest run --coverage"
57
58
  }
58
59
  }