-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix `file.patch` * Allow trigger release by workflow dispatch * Add missing `client` parameter * Allow skipping release note with `skip release note` label * Update distribution file * Bump Node.js 20 & fix deprecated APIs * Fix builds and tests * Update test command * Fix imports * Fix variable usages * Decode matched SVG title * Update distribution files * Replace Generator with async/await
- Loading branch information
Showing
12 changed files
with
3,395 additions
and
1,441 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
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,14 +1,10 @@ | ||
#!/bin/sh | ||
. "$(dirname $0)/_/husky.sh" | ||
|
||
git stash -q --keep-index | ||
|
||
# Format the code base | ||
npm run format | ||
git add . | ||
|
||
# Compile into lib/ | ||
npm run build | ||
git add lib/index.cjs | ||
|
||
git stash pop -q | ||
git add lib/index.mjs |
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 |
---|---|---|
|
@@ -8,5 +8,5 @@ inputs: | |
required: true | ||
|
||
runs: | ||
using: 'node12' | ||
main: 'lib/index.cjs' | ||
using: 'node20' | ||
main: 'lib/index.mjs' |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"type": "module" | ||
} |
Oops, something went wrong.