This repository has been archived by the owner on Mar 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
52,288 additions
and
190 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,18 +1,14 @@ | ||
|
||
Andreas Amsenius <[email protected]> | ||
Corentin Smith <[email protected]> | ||
Dmitry Petukhov <[email protected]> | ||
|
||
Erik Smartt <[email protected]> | ||
|
||
Evgeniy Baraniuk <[email protected]> | ||
|
||
Juan B. Rodriguez <[email protected]> | ||
|
||
Kaishley <[email protected]> | ||
|
||
Mike Monteith <[email protected]> | ||
Nguyen Cao Nhat Linh <[email protected]> | ||
|
||
Tim Suchanek <[email protected]> | ||
follower <[email protected]> | ||
|
||
francisco-sanchez-molina <[email protected]> | ||
|
||
kejinliang <[email protected]> | ||
smartt <[email protected]> |
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,10 +1,11 @@ | ||
{ | ||
"name": "react-native-fetch-blob-dev-env", | ||
"description" : "RNFB development environment, not dist package", | ||
"version": "0.9.6", | ||
"description": "RNFB development environment, not dist package", | ||
"version": "0.10.0-dev", | ||
"private": true, | ||
"scripts": { | ||
"start": "node node_modules/react-native/local-cli/cli.js start", | ||
"update-info": "sh scripts/contributors.sh", | ||
"test": "sh test.sh" | ||
}, | ||
"devDependencies": { | ||
|
@@ -13,5 +14,22 @@ | |
"chokidar": "^1.5.1", | ||
"express": "^4.13.4", | ||
"multer": "^1.1.0" | ||
} | ||
} | ||
}, | ||
"contributors": [ | ||
"Andreas Amsenius <[email protected]>", | ||
"Corentin Smith <[email protected]>", | ||
"Dmitry Petukhov <[email protected]>", | ||
"Erik Smartt <[email protected]>", | ||
"Evgeniy Baraniuk <[email protected]>", | ||
"Juan B. Rodriguez <[email protected]>", | ||
"Kaishley <[email protected]>", | ||
"Mike Monteith <[email protected]>", | ||
"Nguyen Cao Nhat Linh <[email protected]>", | ||
"Tim Suchanek <[email protected]>", | ||
"follower <[email protected]>", | ||
"francisco-sanchez-molina <[email protected]>", | ||
"kejinliang <[email protected]>", | ||
"smartt <[email protected]>", | ||
"" | ||
] | ||
} |
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 @@ | ||
Always execute these scripts from root folder, not here. |
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,21 @@ | ||
|
||
git log --pretty="%an <%ae>" | sort |uniq > CONTRIBUTORS.md | ||
sed -i.bak '/[email protected]/d' ./CONTRIBUTORS.md | ||
rm CONTRIBUTORS.md.bak | ||
|
||
echo "list contributors .." | ||
|
||
cat CONTRIBUTORS.md | ||
|
||
echo "update package.json .." | ||
|
||
node -e "var fs = require('fs');\ | ||
var json = JSON.parse(fs.readFileSync('./package.json'));\ | ||
var contributors = String(fs.readFileSync('./CONTRIBUTORS.md')).split(/[\r\n]/);\ | ||
json.contributors = contributors;\ | ||
var distJSON = JSON.parse(fs.readFileSync('./src/package.json'));\ | ||
distJSON.contributors = contributors;\ | ||
fs.writeFileSync('./src/package.json', JSON.stringify(distJSON, null, 2));\ | ||
fs.writeFileSync('./package.json', JSON.stringify(json, null, 2));" | ||
|
||
echo "done" |
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
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.