Skip to content

Commit

Permalink
chore: remove tree-sitter parsers and don't pack them for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Mar 24, 2024
1 parent e2bf432 commit 8087d0a
Show file tree
Hide file tree
Showing 175 changed files with 84 additions and 84 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/build-linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,26 +54,26 @@ jobs:
run: |
luarocks --verbose --local --lua-version=5.1 install fzy
luarocks --verbose pack fzy
- name: Install `luarocks-build-treesitter-parser` Package
run: |
luarocks --verbose --local --lua-version=5.1 install luarocks-build-treesitter-parser
- name: Get tree-sitter-parsers.json
uses: actions/checkout@v4
with:
repository: nvim-neorocks/nurr
sparse-checkout: |
tree-sitter-parsers.json
path: nurr
- name: Install tree-sitter parsers
run: |
# Filter out parsers that need their sources generated
# We might want to consider adding those too
langs=$(jq -r '.parsers[] | select((.install_info.requires_generate_from_grammar // false) == false) | .lang' nurr/tree-sitter-parsers.json)
for lang in $langs; do
rm "tree-sitter-$lang-scm-1.linux-x86_64.rock" || true
luarocks --local --lua-version=5.1 install "tree-sitter-$lang" \
&& luarocks pack "tree-sitter-$lang" || echo "Failed to pack tree-sitter-$lang"
done
# - name: Install `luarocks-build-treesitter-parser` Package
# run: |
# luarocks --verbose --local --lua-version=5.1 install luarocks-build-treesitter-parser
# - name: Get tree-sitter-parsers.json
# uses: actions/checkout@v4
# with:
# repository: nvim-neorocks/nurr
# sparse-checkout: |
# tree-sitter-parsers.json
# path: nurr
# - name: Install tree-sitter parsers
# run: |
# # Filter out parsers that need their sources generated
# # We might want to consider adding those too
# langs=$(jq -r '.parsers[] | select((.install_info.requires_generate_from_grammar // false) == false) | .lang' nurr/tree-sitter-parsers.json)
# for lang in $langs; do
# rm "tree-sitter-$lang-scm-1.linux-x86_64.rock" || true
# luarocks --local --lua-version=5.1 install "tree-sitter-$lang" \
# && luarocks pack "tree-sitter-$lang" || echo "Failed to pack tree-sitter-$lang"
# done
- name: Regenerate Manifests and HTML
run: luarocks-admin make-manifest --lua-version=5.1 .
- name: commit-linux-x86_64
Expand Down
40 changes: 20 additions & 20 deletions .github/workflows/build-macosx-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,26 +57,26 @@ jobs:
run: |
luarocks --verbose --local --lua-version=5.1 install fzy
luarocks --verbose pack fzy
- name: Install `luarocks-build-treesitter-parser` Package
run: |
luarocks --verbose --local --lua-version=5.1 install luarocks-build-treesitter-parser
- name: Get tree-sitter-parsers.json
uses: actions/checkout@v4
with:
repository: nvim-neorocks/nurr
sparse-checkout: |
tree-sitter-parsers.json
path: nurr
- name: Install tree-sitter parsers
run: |
# Filter out parsers that need their sources generated
# We might want to consider adding those too
langs=$(jq -r '.parsers[] | select((.install_info.requires_generate_from_grammar // false) == false) | .lang' nurr/tree-sitter-parsers.json)
for lang in $langs; do
rm "tree-sitter-$lang-scm-1.macosx-aarch64.rock" || true
luarocks --local --lua-version=5.1 install "tree-sitter-$lang" \
&& luarocks pack "tree-sitter-$lang" || echo "Failed to pack tree-sitter-$lang"
done
# - name: Install `luarocks-build-treesitter-parser` Package
# run: |
# luarocks --verbose --local --lua-version=5.1 install luarocks-build-treesitter-parser
# - name: Get tree-sitter-parsers.json
# uses: actions/checkout@v4
# with:
# repository: nvim-neorocks/nurr
# sparse-checkout: |
# tree-sitter-parsers.json
# path: nurr
# - name: Install tree-sitter parsers
# run: |
# # Filter out parsers that need their sources generated
# # We might want to consider adding those too
# langs=$(jq -r '.parsers[] | select((.install_info.requires_generate_from_grammar // false) == false) | .lang' nurr/tree-sitter-parsers.json)
# for lang in $langs; do
# rm "tree-sitter-$lang-scm-1.macosx-aarch64.rock" || true
# luarocks --local --lua-version=5.1 install "tree-sitter-$lang" \
# && luarocks pack "tree-sitter-$lang" || echo "Failed to pack tree-sitter-$lang"
# done
- name: "[HACK] work around luarocks/#1630"
run: for f in *.macosx-x86_64.rock; do mv "$f" "$(echo "$f" | sed s/x86_64/aarch64/)"; done
- name: Regenerate Manifests and HTML
Expand Down
40 changes: 20 additions & 20 deletions .github/workflows/build-macosx-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,26 +57,26 @@ jobs:
run: |
luarocks --verbose --local --lua-version=5.1 install fzy
luarocks --verbose pack fzy
- name: Install `luarocks-build-treesitter-parser` Package
run: |
luarocks --verbose --local --lua-version=5.1 install luarocks-build-treesitter-parser
- name: Get tree-sitter-parsers.json
uses: actions/checkout@v4
with:
repository: nvim-neorocks/nurr
sparse-checkout: |
tree-sitter-parsers.json
path: nurr
- name: Install tree-sitter parsers
run: |
# Filter out parsers that need their sources generated
# We might want to consider adding those too
langs=$(jq -r '.parsers[] | select((.install_info.requires_generate_from_grammar // false) == false) | .lang' nurr/tree-sitter-parsers.json)
for lang in $langs; do
rm "tree-sitter-$lang-scm-1.macosx-x86_64.rock" || true
luarocks --local --lua-version=5.1 install "tree-sitter-$lang" \
&& luarocks pack "tree-sitter-$lang" || echo "Failed to pack tree-sitter-$lang"
done
# - name: Install `luarocks-build-treesitter-parser` Package
# run: |
# luarocks --verbose --local --lua-version=5.1 install luarocks-build-treesitter-parser
# - name: Get tree-sitter-parsers.json
# uses: actions/checkout@v4
# with:
# repository: nvim-neorocks/nurr
# sparse-checkout: |
# tree-sitter-parsers.json
# path: nurr
# - name: Install tree-sitter parsers
# run: |
# # Filter out parsers that need their sources generated
# # We might want to consider adding those too
# langs=$(jq -r '.parsers[] | select((.install_info.requires_generate_from_grammar // false) == false) | .lang' nurr/tree-sitter-parsers.json)
# for lang in $langs; do
# rm "tree-sitter-$lang-scm-1.macosx-x86_64.rock" || true
# luarocks --local --lua-version=5.1 install "tree-sitter-$lang" \
# && luarocks pack "tree-sitter-$lang" || echo "Failed to pack tree-sitter-$lang"
# done
- name: Regenerate Manifests and HTML
run: luarocks-admin make-manifest --lua-version=5.1 .
- name: commit-macosx-x86_64
Expand Down
48 changes: 24 additions & 24 deletions .github/workflows/build-win32-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,30 +64,30 @@ jobs:
luarocks --verbose --local --lua-version=5.1 install toml-edit
luarocks --verbose pack toml-edit
if: always()
- name: Install `luarocks-build-treesitter-parser` Package
run: |
luarocks --verbose --local --lua-version=5.1 install luarocks-build-treesitter-parser
if: always()
- name: Get tree-sitter-parsers.json
uses: actions/checkout@v4
with:
repository: nvim-neorocks/nurr
sparse-checkout: |
tree-sitter-parsers.json
path: nurr
if: always()
- name: Install tree-sitter parsers
shell: bash
run: |
# Filter out parsers that need their sources generated
# We might want to consider adding those too
langs=$(jq -r '.parsers[] | select((.install_info.requires_generate_from_grammar // false) == false) | .lang' nurr/tree-sitter-parsers.json | tr -d '\r')
for lang in $langs; do
rm "tree-sitter-$lang-scm-1.win32-x86_64.rock" || true
luarocks --local --lua-version=5.1 install "tree-sitter-$lang" \
&& luarocks pack "tree-sitter-$lang" || echo "Failed to pack tree-sitter-$lang"
done
if: always()
# - name: Install `luarocks-build-treesitter-parser` Package
# run: |
# luarocks --verbose --local --lua-version=5.1 install luarocks-build-treesitter-parser
# if: always()
# - name: Get tree-sitter-parsers.json
# uses: actions/checkout@v4
# with:
# repository: nvim-neorocks/nurr
# sparse-checkout: |
# tree-sitter-parsers.json
# path: nurr
# if: always()
# - name: Install tree-sitter parsers
# shell: bash
# run: |
# # Filter out parsers that need their sources generated
# # We might want to consider adding those too
# langs=$(jq -r '.parsers[] | select((.install_info.requires_generate_from_grammar // false) == false) | .lang' nurr/tree-sitter-parsers.json | tr -d '\r')
# for lang in $langs; do
# rm "tree-sitter-$lang-scm-1.win32-x86_64.rock" || true
# luarocks --local --lua-version=5.1 install "tree-sitter-$lang" \
# && luarocks pack "tree-sitter-$lang" || echo "Failed to pack tree-sitter-$lang"
# done
# if: always()
- name: Regenerate Manifests and HTML
run: luarocks-admin make-manifest --lua-version=5.1 .
if: always()
Expand Down
Binary file removed tree-sitter-apex-0.0.10-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-apex-0.0.10-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-arduino-0.20.3-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-arduino-0.20.3-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-bash-0.21.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-bash-0.21.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-bass-0.0.2-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-bass-0.0.2-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-bicep-1.0.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-bicep-1.0.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-bitbake-1.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-bitbake-1.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-c-0.21.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-c-0.21.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-c_sharp-0.20.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-c_sharp-0.20.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-cairo-1.0.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-cairo-1.0.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-capnp-1.5.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-capnp-1.5.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-chatito-0.1.2-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-chatito-0.1.2-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-clojure-0.0.12-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-clojure-0.0.12-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-cmake-0.4.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-cmake-0.4.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-comment-0.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-comment-0.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-commonlisp-0.3.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-commonlisp-0.3.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-cpon-1.0.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-cpon-1.0.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-css-0.19.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-css-0.19.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-csv-1.2.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-csv-1.2.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-cuda-0.20.3-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-cuda-0.20.3-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-devicetree-0.5.0-1.linux-x86_64.rock
Binary file not shown.
Binary file not shown.
Binary file removed tree-sitter-dockerfile-0.1.2-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-dockerfile-0.1.2-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-doxygen-1.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-doxygen-1.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-eex-0.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-eex-0.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-elixir-0.1.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-elixir-0.1.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-elm-5.7.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-elm-5.7.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-elsa-1.0.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-elsa-1.0.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed tree-sitter-erlang-0.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-erlang-0.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-fennel-1.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-fennel-1.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-foam-0.5.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-foam-0.5.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-func-1.0.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-func-1.0.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-gdscript-1.8.2-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-gdscript-1.8.2-1.macosx-aarch64.rock
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed tree-sitter-gitcommit-0.3.3-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-gitcommit-0.3.3-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-gleam-0.28.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-gleam-0.28.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-glimmer-1.2.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-glimmer-1.2.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-glsl-0.1.6-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-glsl-0.1.6-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-gn-1.0.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-gn-1.0.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-go-0.19.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-go-0.19.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-godot_resource-0.5.0-1.linux-x86_64.rock
Binary file not shown.
Binary file not shown.
Binary file removed tree-sitter-gomod-1.0.2-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-gomod-1.0.2-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-gosum-1.0.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-gosum-1.0.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-gpg-0.2.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-gpg-0.2.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-hare-1.0.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-hare-1.0.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-haskell-0.15.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-haskell-0.15.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-heex-0.6.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-heex-0.6.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-hoon-0.0.3-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-hoon-0.0.3-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-html-0.20.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-html-0.20.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-http-1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-http-1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-hurl-1.4.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-hurl-1.4.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-ini-1.1.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-ini-1.1.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-ispc-0.1.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-ispc-0.1.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-janet_simple-0.0.3-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-janet_simple-0.0.3-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-java-0.20.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-java-0.20.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-javascript-0.19.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-javascript-0.19.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-jsdoc-0.19.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-jsdoc-0.19.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-json-0.5.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-json-0.5.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-julia-0.0.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-kconfig-1.1.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-kconfig-1.1.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-kdl-1.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-kdl-1.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-latex-0.3.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-latex-0.3.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-leo-1.0.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-leo-1.0.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed tree-sitter-lua-0.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-lua-0.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-luadoc-1.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-luadoc-1.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-luap-1.0.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-luap-1.0.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-luau-1.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-luau-1.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-m68k-0.2.7-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-m68k-0.2.7-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-markdown-0.2.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-markdown-0.2.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed tree-sitter-menhir-0.4.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-menhir-0.4.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-meson-1.2-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-meson-1.2-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-nim-0.5.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-nim-0.5.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-nqc-1.0.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-nqc-1.0.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-objc-2.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-objc-2.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-objdump-1.3.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-objdump-1.3.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-odin-1.1.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-odin-1.1.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-pascal-0.9.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-pascal-0.9.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-pem-0.1.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-pem-0.1.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-php-0.2.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-php-0.2.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-poe_filter-0.3.1-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-poe_filter-0.3.1-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-pony-1.0.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-pony-1.0.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-prisma-1.4.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-prisma-1.4.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-properties-0.2.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-properties-0.2.0-1.macosx-aarch64.rock
Binary file not shown.
Binary file removed tree-sitter-psv-1.2.0-1.linux-x86_64.rock
Binary file not shown.
Binary file removed tree-sitter-psv-1.2.0-1.macosx-aarch64.rock
Binary file not shown.

0 comments on commit 8087d0a

Please sign in to comment.