claude-code-templates 1.14.7 → 1.14.8

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": "claude-code-templates",
3
- "version": "1.14.7",
3
+ "version": "1.14.8",
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": {
@@ -99,8 +99,8 @@ class TrackingService {
99
99
  session: trackingData.session_id.substring(0, 8) // Only first 8 chars for privacy
100
100
  });
101
101
 
102
- // Use public telemetry endpoint (no auth needed, returns GIF)
103
- await fetch(`https://vercel-tracking-m1wrh55ev-daniel-avilas-projects-2d322e1e.vercel.app/api/telemetry?${params}`, {
102
+ // Use GitHub Pages tracking endpoint via custom domain (no auth needed)
103
+ await fetch(`https://aitmpl.com/api/track.html?${params}`, {
104
104
  method: 'GET',
105
105
  mode: 'no-cors', // Prevents CORS errors
106
106
  signal: controller.signal