Skip to content

Commit

Permalink
add browser support
Browse files Browse the repository at this point in the history
  • Loading branch information
bcherny committed May 3, 2015
1 parent d8b7fda commit ab5815f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
coverage
co-browser.js
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "co",
"version": "4.5.2",
"version": "4.5.3",
"description": "generator async control flow goodness",
"keywords": [
"async",
Expand All @@ -10,14 +10,17 @@
"coroutine"
],
"devDependencies": {
"browserify": "^10.0.0",
"istanbul-harmony": "0",
"mocha": "^2.0.0",
"mz": "^1.0.2"
},
"scripts": {
"test": "mocha --harmony",
"test-cov": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter dot",
"test-travis": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --reporter dot"
"test-travis": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --reporter dot",
"prepublish": "npm run browserify",
"browserify": "browserify index.js -o ./co-browser.js -s co"
},
"files": [
"index.js"
Expand Down

0 comments on commit ab5815f

Please sign in to comment.