@goodfoot/claude-code-hooks 1.0.9 → 1.0.10

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/dist/scaffold.js +3 -4
  2. package/package.json +1 -1
package/dist/scaffold.js CHANGED
@@ -145,11 +145,10 @@ function generateTsConfig() {
145
145
  skipLibCheck: true,
146
146
  declaration: true,
147
147
  declarationMap: true,
148
- outDir: './dist',
149
- rootDir: './src'
148
+ outDir: './dist'
150
149
  },
151
- include: ['src/**/*.ts'],
152
- exclude: ['node_modules', 'dist', 'test']
150
+ include: ['src/**/*.ts', 'test/**/*.ts'],
151
+ exclude: ['node_modules', 'dist']
153
152
  };
154
153
  return JSON.stringify(tsconfig, null, 2) + '\n';
155
154
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodfoot/claude-code-hooks",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Type-safe Claude Code hooks library with camelCase types and output builders",
5
5
  "homepage": "https://github.com/goodfoot-io/marketplace/tree/main/packages/claude-code-hooks",
6
6
  "repository": {