Skip to content

Commit a01dc95

Browse files
committed
exclude CHANGELOG from bundle
1 parent 7699645 commit a01dc95

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

scripts/install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ echo "Install dir: $TARGET"
1111

1212
# Copy all included files to a temporary directory
1313
TMP="$(mktemp -d)"
14-
for f in src/*.typ CHANGELOG.md README.md LICENSE typst.toml docs/*.svg; do
14+
for f in src/*.typ README.md LICENSE typst.toml docs/*.svg; do
1515
mkdir -p "$TMP/$(dirname "$f")" 2>/dev/null
1616
cp -r "$ROOT/$f" "$TMP/$f"
1717
done

typst.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ keywords = [
1919
]
2020
exclude = [
2121
".github",
22+
".gitignore",
2223
"docs",
2324
"scripts",
2425
"tests",
2526
"Justfile",
27+
"CHANGELOG.md",
28+
"CONTRIBUTING.md",
2629
]

0 commit comments

Comments
 (0)