File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 19
19
_obj /
20
20
21
21
# Python artifacts
22
+ __pycache__ /
22
23
.venv /
23
24
dist /
24
25
* .egg-info
Original file line number Diff line number Diff line change @@ -24,12 +24,14 @@ ts build --wasm && \
24
24
cp -a test target && \
25
25
ts test || { playground; exit 1 ; }
26
26
27
- mkdir -p vendor && \
28
- rm -f target/libtree-sitter-cedar.* vendor/libtree-sitter-cedar.* && \
27
+ rm -f target/libtree-sitter-cedar.* cedarscript_grammar/libtree-sitter-cedar.* && \
29
28
(cd target && cc -c -I./src src/parser.c && cc -dynamiclib -o libtree-sitter-cedar.dylib parser.o) && \
30
- mv target/libtree-sitter-cedar.dylib vendor / && \
29
+ mv target/libtree-sitter-cedar.dylib cedarscript_grammar / && \
31
30
docker build -t tree-sitter-cedar-builder . && \
32
31
docker cp $( docker create tree-sitter-cedar-builder) :/libtree-sitter-cedar.so \
33
- vendor/libtree-sitter-cedar.so || exit
32
+ cedarscript_grammar/libtree-sitter-cedar.so || exit
33
+
34
+ ls -Falk cedarscript_grammar/lib*
35
+ du -hs cedarscript_grammar/lib*
34
36
35
37
playground
You can’t perform that action at this time.
0 commit comments