Skip to content

Commit 387656d

Browse files
author
Alex Page
authored
Merge pull request #3 from alex-page/promise-all-catch-error
Add automatic builds, error logs
2 parents 46ea677 + 020ac62 commit 387656d

File tree

4 files changed

+261
-4
lines changed

4 files changed

+261
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ GraphqlError: Resource protected by organization SAML enforcement. You must gran
8282
8383
## Release History
8484
85+
- v0.0.3 - Automatic build before commit
8586
- v0.0.2 - Error handling using GitHub actions
8687
- v0.0.1 - Update icon and color for GitHub actions
8788
- v0.0.0 - Initial release

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 249 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "github-project-automation-plus",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "🤖 Automate GitHub Project cards with any webhook event",
55
"private": true,
66
"main": "dist/index.js",
@@ -33,6 +33,15 @@
3333
},
3434
"devDependencies": {
3535
"@zeit/ncc": "^0.20.4",
36+
"husky": "^3.0.5",
3637
"xo": "^0.24.0"
38+
},
39+
"files": [
40+
"dist/index.js"
41+
],
42+
"husky": {
43+
"hooks": {
44+
"pre-commit": "npm run build && git add ./dist/index.js"
45+
}
3746
}
3847
}

0 commit comments

Comments
 (0)