Skip to content
This repository has been archived by the owner on Aug 23, 2019. It is now read-only.

Commit

Permalink
chore: add --dom
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddias committed Mar 21, 2017
1 parent d5668d1 commit f5cc742
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -6,12 +6,12 @@
"scripts": {
"lint": "gulp lint",
"build": "gulp build",
"test": "gulp test",
"test": "gulp test --dom",
"test:node": "gulp test:node",
"test:browser": "gulp test:browser",
"test:browser": "gulp test:browser --dom",
"release": "gulp release --dom",
"release-minor": "gulp release --type minor",
"release-major": "gulp release --type major",
"release-minor": "gulp release --type minor --dom",
"release-major": "gulp release --type major --dom",
"coverage": "gulp coverage",
"coverage-publish": "aegir-coverage publish"
},
Expand Down
2 changes: 1 addition & 1 deletion src/protocol-muxer.js
Expand Up @@ -15,7 +15,7 @@ module.exports = function protocolMuxer (protocols, conn) {

ms.handle(conn, (err) => {
if (err) {
return // the multistream handshake failed
// the multistream handshake failed
}
})
}

0 comments on commit f5cc742

Please sign in to comment.