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 +1 -1
- package/src/tracking-service.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-templates",
|
|
3
|
-
"version": "1.14.
|
|
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": {
|
package/src/tracking-service.js
CHANGED
|
@@ -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
|
|
103
|
-
await fetch(`https://
|
|
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
|