You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: justfile
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,15 @@
1
1
default:
2
2
@just --list
3
3
4
+
# Build and serve the manual.
4
5
doc:
5
6
cd manual && mdbook serve --open
6
7
8
+
# Run the output regression test.
7
9
compare:
8
10
sample_files/compare_all.sh
9
11
12
+
# Create a git tag and push it, to trigger a release on GitHub actions.
10
13
release:
11
14
#!/bin/bash
12
15
@@ -18,16 +21,19 @@ release:
18
21
19
22
cargo set-version --bump minor
20
23
24
+
# Serve the homepage locally.
21
25
home:
22
26
echo "http://localhost:8080"
23
27
cd homepage && python -m http.server 8080
24
28
29
+
# Generate release notes for the currently unreleased version.
25
30
rel_notes:
26
31
#!/bin/bash
27
32
28
33
echo -e "Difftastic is a structural diff tool that understands syntax. See [the manual](https://difftastic.wilfred.me.uk/) to get started, and [the changelog](https://github.com/Wilfred/difftastic/blob/master/CHANGELOG.md) for historical changes.\n"
0 commit comments