Skip to content

Commit

Permalink
Bump to 1.0.0 + newer tape
Browse files Browse the repository at this point in the history
  • Loading branch information
terinjokes committed Mar 30, 2015
1 parent 5c825a7 commit 3a46c81
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "defined",
"version" : "0.0.0",
"version" : "1.0.0",
"description" : "return the first argument that is `!== undefined`",
"main" : "index.js",
"directories" : {
Expand All @@ -9,11 +9,10 @@
},
"dependencies" : {},
"devDependencies" : {
"tap" : "~0.3.0",
"tape" : "~0.2.2"
"tape" : "~3.5.0"
},
"scripts" : {
"test" : "tap test/*.js"
"test" : "tape test/*.js"
},
"testling" : {
"files" : "test/*.js",
Expand Down
2 changes: 1 addition & 1 deletion test/falsy.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var test = require('tape');
var defined = require('../');

test(function (t) {
test('falsy', function (t) {
t.plan(1);
var opts = { y : false, w : 4 };
var x = defined(opts.x, opts.y, opts.w, 8);
Expand Down

0 comments on commit 3a46c81

Please sign in to comment.