-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.1.8 - added support for hardBreak output type
- Loading branch information
Showing
12 changed files
with
273 additions
and
106 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 |
---|---|---|
@@ -1,5 +1,12 @@ | ||
./target | ||
./pkg | ||
./test_cases | ||
./tmp | ||
./releases | ||
/target | ||
/pkg | ||
/test_cases | ||
/tmp | ||
.DS_Store | ||
/releases | ||
.DS_Store | ||
.git |
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,8 @@ | ||
aarch64-apple-darwin | ||
aarch64-unknown-linux-gnu | ||
aarch64-unknown-linux-musl | ||
i686-unknown-linux-gnu | ||
x86_64-apple-darwin | ||
x86_64-pc-windows-gnu | ||
x86_64-pc-windows-msvc | ||
x86_64-unknown-linux-gnu |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -79,7 +79,7 @@ | |
|
||
</style> | ||
<script defer type="module"> | ||
import init, {convert} from "https://unpkg.com/[email protected].7/htmltoadf.js"; | ||
import init, {convert} from "https://unpkg.com/[email protected].8/htmltoadf.js"; | ||
|
||
let editor; | ||
|
||
|
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,24 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
# Ask for RELEASE_NAME | ||
read -p "Enter RELEASE_NAME: " RELEASE_NAME | ||
|
||
# Create releases directory if it doesn't exist | ||
mkdir -p "releases/${RELEASE_NAME}" | ||
|
||
# Read targets from .targets file and build | ||
if [ -f .targets ]; then | ||
cat .targets | xargs -I {} cargo zigbuild --target {} --release -Z unstable-options --out-dir="./releases/${RELEASE_NAME}/{}" || true | ||
echo "Build completed. Output files are in releases/${RELEASE_NAME}/ directory." | ||
|
||
# Create tar.gz archive excluding files specified in .gitignore | ||
git archive --format=tar.gz --output="releases/${RELEASE_NAME}/src.tar.gz" HEAD | ||
|
||
# Create zip archive excluding files specified in .gitignore | ||
git archive --format=zip --output="releases/${RELEASE_NAME}/src.zip" HEAD | ||
|
||
echo "Tar.gz and Zip archives created in releases/${RELEASE_NAME}/ directory." | ||
else | ||
echo ".targets file not found." | ||
fi |
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
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
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
Oops, something went wrong.