Commit node_modules.

For @billywhizz :)

And cause it's just an all around good idea for command-line apps.
This commit is contained in:
Nathan Rajlich 2012-02-10 23:44:09 -08:00
parent d39620999f
commit 24bde139e1
255 changed files with 20261 additions and 0 deletions

19
node_modules/mkdirp/examples/pow.js.rej generated vendored Normal file
View file

@ -0,0 +1,19 @@
--- examples/pow.js
+++ examples/pow.js
@@ -1,6 +1,15 @@
-var mkdirp = require('mkdirp').mkdirp;
+var mkdirp = require('../').mkdirp,
+ mkdirpSync = require('../').mkdirpSync;
mkdirp('/tmp/foo/bar/baz', 0755, function (err) {
if (err) console.error(err)
else console.log('pow!')
});
+
+try {
+ mkdirpSync('/tmp/bar/foo/baz', 0755);
+ console.log('double pow!');
+}
+catch (ex) {
+ console.log(ex);
+}