Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.17.1
1.17.2
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ <h3>Scaffold Generator</h3>
</div>
<div class="footer-divider"></div>
<div class="footer-meta">
<span id="footerVersion">v1.17.1</span>
<span id="footerVersion">v1.17.2</span>
<span>&middot;</span>
<span>CC-BY-NC-ND-4.0</span>
<span>&middot;</span>
Expand Down
1 change: 1 addition & 0 deletions scaffold/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ def _render_repo(output_dir: Path, ctx: dict, *, verbose: bool) -> None:
("LICENSE", "LICENSE.j2"),
(".cursorrules", "cursorrules.j2"),
(".gitignore", "gitignore.j2"),
(".gitattributes", "gitattributes.j2"),
("site.json", "site.json.j2"),
("mcp-tools.json", "mcp-tools.json.j2"),
):
Expand Down
13 changes: 13 additions & 0 deletions scaffold/templates/gitattributes.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Normalize line endings
* text=auto
*.ts eol=lf
*.js eol=lf
*.json eol=lf
*.md eol=lf
*.yml eol=lf
*.yaml eol=lf

# Committed binary artifacts (e.g. symbol databases, tree-sitter grammars) must
# never be line-ending converted or diffed as text.
*.gz binary
*.wasm binary
2 changes: 1 addition & 1 deletion scaffold/templates/package.json.j2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@{{ repo_owner | lower }}/{{ slug }}",
"name": "@tmhs/{{ slug }}",
"version": "0.1.0",
"description": "{{ description }}",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion scaffold/templates/site.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"Search for <code>{{ name }}</code>",
"Click <code>Install</code> and reload"
{% else %}
"Install with <code>npx -y @{{ repo_owner | lower }}/{{ slug }}</code>",
"Install with <code>npx -y @tmhs/{{ slug }}</code>",
"Add to your Claude Desktop or Cursor mcpServers config",
"Restart your MCP client"
{% endif %}
Expand Down
Loading