claude-code-templates 1.24.5 → 1.24.6

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/package.json +1 -1
  2. package/src/index.js +1 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-templates",
3
- "version": "1.24.5",
3
+ "version": "1.24.6",
4
4
  "description": "CLI tool to setup Claude Code configurations with framework-specific commands, automation hooks and MCP Servers for your projects",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -2610,15 +2610,7 @@ async function executeCloudflareSandbox(options, targetDir) {
2610
2610
 
2611
2611
  // Copy all files from cloudflare directory
2612
2612
  await fs.copy(componentsDir, sandboxDir, {
2613
- overwrite: true,
2614
- filter: (src) => {
2615
- // Exclude node_modules and build artifacts
2616
- const shouldCopy = !src.includes('node_modules') &&
2617
- !src.includes('.wrangler') &&
2618
- !src.includes('dist') &&
2619
- !src.includes('.gitignore');
2620
- return shouldCopy;
2621
- }
2613
+ overwrite: true
2622
2614
  });
2623
2615
 
2624
2616
  // Verify files were copied