Skip to content

Commit

Permalink
Minor changes: made make.js executable and updated CONTRIBUTING.
Browse files Browse the repository at this point in the history
You can now use make.js without explicitly specifying node:

	./make.js test

I removed the note about hard-tabs and jshint.js because it was no
longer true.
  • Loading branch information
valueof committed Oct 27, 2012
1 parent ee77638 commit 7483f07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ many people contributed. —[idiomatic.js](https://github.com/rwldrn/idiomatic.j

### Whitespace:

* We use hard tabs everywhere except for `src/stable/jshint.js`. It's annoying, we know.
* We use hard tabs everywhere.
* [Smart tabs](http://www.emacswiki.org/SmartTabs) are okay.
* Use one space after `if`, `for`, `while`, etc.
* Use one space after `function` for anonymous functions but not for named functions:
Expand Down
2 changes: 2 additions & 0 deletions make.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node

"use strict";

require("shelljs/make");
Expand Down

0 comments on commit 7483f07

Please sign in to comment.