Skip to content

Commit

Permalink
bump dependencies (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnyp authored Nov 19, 2016
1 parent 4ae76eb commit 2aae68f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
!.npmignore
!.travis.yml

node_modules/

bundle.js
yarn.lock
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ node_js:
- '0.12'
- '4'
- '5'
- 'stable'
- '6'
- '7'

addons:
apt:
Expand Down
2 changes: 1 addition & 1 deletion lib/DOMElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ DOMElement.prototype.removeChild = function (el) {
this.remove(el)
}

DOMElement.createElement = function (name, attrs /*, child1, child2, ...*/) {
DOMElement.createElement = function (name, attrs /*, child1, child2, ... */) {
var el = new DOMElement(name, attrs)

var children = Array.prototype.slice.call(arguments, 2)
Expand Down
2 changes: 1 addition & 1 deletion lib/createElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var Element = require('./Element')
* @param {object} attrs object of attribute key/value pairs
* @return {Element} Element
*/
module.exports = function createElement (name, attrs /*, child1, child2, ...*/) {
module.exports = function createElement (name, attrs /*, child1, child2, ... */) {
var el = new Element(name, attrs)

for (var i = 2; i < arguments.length; i++) {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
"benchmark": "^2.1.0",
"browserify": "^13.0.1",
"libxmljs": "^0.18.0",
"microtime": "^2.0.0",
"microtime": "^2.1.2",
"node-expat": "^2.3.13",
"node-xml": "^1.0.2",
"sax": "^1.1.5",
"standard": "^7.1.2",
"standard": "^8.5.0",
"vows": "^0.8.1"
}
}

0 comments on commit 2aae68f

Please sign in to comment.