Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(bindings): fix template oversights #3155

Merged
merged 1 commit into from
Mar 10, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/src/generate/templates/PARSER_NAME.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ libdir=@LIBDIR@
includedir=@INCLUDEDIR@

Name: tree-sitter-PARSER_NAME
Description: PARSER_NAME grammar for tree-sitter
Description: CAMEL_PARSER_NAME grammar for tree-sitter
URL: @URL@
Version: @VERSION@
Requires: @REQUIRES@
Expand Down
4 changes: 2 additions & 2 deletions cli/src/generate/templates/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ let package = Package(
"bindings/node",
"bindings/python",
"bindings/rust",
"examples",
"prebuilds",
"grammar.js",
"package.json",
"package-lock.json",
"pyproject.toml",
"setup.py",
"test",
"types",
"examples",
".editorconfig",
".github",
".gitignore",
Expand Down
2 changes: 2 additions & 0 deletions cli/src/generate/templates/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"CAMEL_PARSER_NAME grammar for tree-sitter"

from ._binding import language

__all__ = ["language"]