Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .npmignore; Move internal scripts from bin/ to scripts/ #1363

Merged
merged 1 commit into from Apr 25, 2018
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

Move internal scripts from bin/ to scripts/

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
commit 352c52792002dc2efd9e2e6b72982ef3297b68fd
@@ -0,0 +1,7 @@
.airtap.yml
.appveyor.yml
.github/
.travis.yml
CONTRIBUTING.md
scripts/
test/
@@ -130,4 +130,4 @@
- Raymond Tan (now-raymond@users.noreply.github.com)
- Kaylee (34007889+KayleePop@users.noreply.github.com)

#### Generated by bin/update-authors.sh.
#### Generated by scripts/update-authors.sh.
@@ -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"
}
}
@@ -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
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.