-
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update contributors (and make it run on prepublishOnly)
- Loading branch information
Showing
2 changed files
with
14 additions
and
7 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 |
---|---|---|
|
@@ -37,10 +37,11 @@ | |
"test": "ava && ava --config ava-ts.config.js test/test-typings.ts", | ||
"test-watch": "ava --watch", | ||
"pre-commit": "yarn run lint && yarn run build && yarn run test", | ||
"prepublishOnly": "bash scripts/update-contributors", | ||
"prepack": "cp ../../README.md . && yarn build", | ||
"postpack": "rm README.md", | ||
"unsafe-bootstrap": "bash scripts/bootstrap", | ||
"version-package": "bash scripts/version", | ||
"update-contributors": "bash scripts/update-contributors", | ||
"watch": "webpack --mode=development --watch" | ||
}, | ||
"license": "MIT", | ||
|
@@ -52,18 +53,19 @@ | |
"Tony Garnock-Jones <[email protected]>", | ||
"Saketh Kasibatla <[email protected]>", | ||
"Lionel Landwerlin <[email protected]>", | ||
"Ray Toal <[email protected]>", | ||
"Jason Merrill <[email protected]>", | ||
"Ray Toal <[email protected]>", | ||
"Yoshiki Ohshima <[email protected]>", | ||
"stagas <[email protected]>", | ||
"Jonathan Edwards <[email protected]>", | ||
"Milan Lajtoš <[email protected]>", | ||
"Neil Jewers <[email protected]>", | ||
"megabuz <[email protected]>", | ||
"Mike Niebling <(none)>", | ||
"AngryPowman <[email protected]>", | ||
"Leslie Ying <[email protected]>", | ||
"Pierre Donias <[email protected]>", | ||
"sfinnie <[email protected]>", | ||
"Justin Chase <[email protected]>", | ||
"Pierre Donias <[email protected]>", | ||
"Ian Harris <[email protected]>", | ||
"Daniel Tomlinson <[email protected]>", | ||
"Stan Rozenraukh <[email protected]>", | ||
"Stephan Seidt <[email protected]>", | ||
|
@@ -77,9 +79,10 @@ | |
"abego <[email protected]>", | ||
"acslk <[email protected]>", | ||
"codeZeilen <[email protected]>", | ||
"owch <bowenrainyday@gmail.com>", | ||
"AngryPowman <angrypowman@qq.com>", | ||
"Luca Guzzon <[email protected]>", | ||
"sfinnie <[email protected]>" | ||
"Leslie Ying <[email protected]>", | ||
"owch <[email protected]>" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
|
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,4 @@ | ||
#!/bin/bash | ||
|
||
echo "👫 Updating the list of contributors..." | ||
json -I -f "package.json" -e "this.contributors=[$(./scripts/get-contributors)]" |