generated from agendrix/github-typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pre-commit hook and update gitattributes
- Loading branch information
1 parent
4661d3d
commit cfbbe6a
Showing
9 changed files
with
219 additions
and
197 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 +1,15 @@ | ||
dist/** -diff linguist-generated=true | ||
# Prevent build from appearing in github diff's | ||
# https://docs.github.com/en/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github | ||
dist/** -diff linguist-generated=true | ||
|
||
# Control the archive attached to releases | ||
# https://git-scm.com/docs/gitattributes#_creating_an_archive | ||
* export-ignore | ||
|
||
package.json -export-ignore | ||
README.md -export-ignore | ||
LICENSE -export-ignore | ||
|
||
dist/** -export-ignore | ||
dist -export-ignore | ||
|
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,6 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
rm -rf ./dist | ||
yarn package | ||
git add ./dist |
File renamed without changes.
Oops, something went wrong.