-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It turns out (#92) that some libraries rely on the name of the `tree-sitter` packages always being `tree-sitter-.*`. Rather than trying to take some secondary title of `experimental-swift` or similar, we can simply drop the `experimental` and bring balance to the force. Fixes #92
- Loading branch information
1 parent
ce8bedd
commit 7e359f4
Showing
8 changed files
with
47 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "experimental-tree-sitter-swift", | ||
"version": "0.0.3", | ||
"description": "An experimental tree-sitter grammar for the Swift programming language.", | ||
"name": "tree-sitter-swift", | ||
"version": "0.1.0", | ||
"description": "A tree-sitter grammar for the Swift programming language.", | ||
"main": "bindings/node/index.js", | ||
"scripts": { | ||
"install": "tsc && tree-sitter generate ./build/grammar.js", | ||
|
@@ -12,7 +12,7 @@ | |
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/alex-pinkus/experimental-tree-sitter-swift.git" | ||
"url": "git+https://github.com/alex-pinkus/tree-sitter-swift.git" | ||
}, | ||
"keywords": [ | ||
"parser", | ||
|
@@ -21,9 +21,9 @@ | |
"author": "Alex Pinkus <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/alex-pinkus/experimental-tree-sitter-swift/issues" | ||
"url": "https://github.com/alex-pinkus/tree-sitter-swift/issues" | ||
}, | ||
"homepage": "https://github.com/alex-pinkus/experimental-tree-sitter-swift#readme", | ||
"homepage": "https://github.com/alex-pinkus/tree-sitter-swift#readme", | ||
"dependencies": { | ||
"@types/node": "^16.11.10", | ||
"nan": "^2.15.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters