Skip to content

Commit

Permalink
[dist test] Update devDependencies in package.json. Update test pathi…
Browse files Browse the repository at this point in the history
…ng to be more npm and require.paths future-proof
  • Loading branch information
indexzero committed Jun 13, 2011
1 parent 7bfce2f commit aa753e7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -12,6 +12,7 @@
"wordwrap" : ">=0.0.1 <0.1"
},
"devDependencies" : {
"hashish": "0.0.x",
"expresso" : "=0.7.x"
},
"repository" : {
Expand Down
2 changes: 1 addition & 1 deletion test/_/bin.js
@@ -1,3 +1,3 @@
#!/usr/bin/env node
var argv = require('optimist').argv
var argv = require('../../index').argv
console.log(JSON.stringify(argv._));
2 changes: 1 addition & 1 deletion test/parse.js
@@ -1,4 +1,4 @@
var optimist = require('optimist');
var optimist = require('../index');
var assert = require('assert');

exports['short boolean'] = function () {
Expand Down
2 changes: 1 addition & 1 deletion test/usage.js
@@ -1,5 +1,5 @@
var Hash = require('hashish');
var optimist = require('optimist');
var optimist = require('../index');
var assert = require('assert');

exports.usageFail = function () {
Expand Down

0 comments on commit aa753e7

Please sign in to comment.