Skip to content

Commit

Permalink
Move internal scripts from bin/ to scripts/
Browse files Browse the repository at this point in the history
By convention the bin/ folder is for user-facing command line scripts. Let's use scripts/ for internal scripts that don't need to be published.
  • Loading branch information
feross committed Apr 25, 2018
1 parent 4022deb commit 352c527
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.airtap.yml
.appveyor.yml
.github/
.travis.yml
CONTRIBUTING.md
scripts/
test/
2 changes: 1 addition & 1 deletion AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@
- Raymond Tan ([email protected])
- Kaylee ([email protected])

#### Generated by bin/update-authors.sh.
#### Generated by scripts/update-authors.sh.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@
"test-browser": "airtap -- test/*.js test/browser/*.js",
"test-browser-local": "airtap --local -- test/*.js test/browser/*.js",
"test-node": "tape test/*.js test/node/*.js",
"update-authors": "./bin/update-authors.sh"
"update-authors": "./scripts/update-authors.sh"
}
}
2 changes: 1 addition & 1 deletion bin/update-authors.sh → scripts/update-authors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ END {
print "# Authors\n\n";
print "#### Ordered by first contribution.\n\n";
print @authors, "\n";
print "#### Generated by bin/update-authors.sh.\n";
print "#### Generated by scripts/update-authors.sh.\n";
}
' > AUTHORS.md

0 comments on commit 352c527

Please sign in to comment.