File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 28
28
- name : Build
29
29
run : make build
30
30
31
+ - name : Build JS
32
+ run : make build-js
33
+
31
34
lint :
32
35
name : Lint
33
36
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
.PHONY : all
2
- all : build lint test
2
+ all : build build-js lint test
3
3
4
4
.PHONY : clean
5
5
clean :
@@ -22,6 +22,10 @@ build:
22
22
# Use --all-targets to ensure that all of the benchmarks compile.
23
23
cargo build --all-targets --all-features
24
24
25
+ .PHONY : build-js
26
+ build-js :
27
+ npm --prefix crates/string-offsets/js run compile
28
+
25
29
.PHONY : test
26
30
test :
27
31
RUST_BACKTRACE=1 cargo test
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " string-offsets-dev " ,
2
+ "name" : " string-offsets" ,
3
3
"version" : " 0.1.0" ,
4
4
"author" :
" The blackbird team <[email protected] >" ,
5
5
"license" : " MIT" ,
You can’t perform that action at this time.
0 commit comments