-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add .typstignore and adapt package script to use it
- Loading branch information
1 parent
c70c957
commit fe4f791
Showing
2 changed files
with
61 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# this is not a "standard" ignore file, it's specific to this template's `scripts/package` script | ||
# list any files here that should not be uploaded to Universe when releasing this package | ||
|
||
# if you are used to ignore files, be aware that .typstignore is a bit more limited: | ||
# - only this file is used; .typstignore files in subdirectories are not considered | ||
# - patterns must match file/directory names from the beginning: `x.typ` will not match `src/x.typ` | ||
# - `*` in patterns works, but also matches directory separators: `*.typ` _will_ match `src/x.typ` | ||
# .git and .typstignore are excluded automatically | ||
|
||
.github | ||
scripts | ||
tests | ||
Justfile | ||
# PDF manuals should be included so that they can be linked, but not their sources | ||
docs/* | ||
!docs/*.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters