[Pkg-javascript-commits] [ltx] 10/25: bump dependencies (#103)
Jonas Smedegaard
dr at jones.dk
Tue Jan 10 18:21:46 UTC 2017
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository ltx.
commit 2aae68f5655e30f28115bf6388d559368d0db48e
Author: Sonny Piers <sonny at fastmail.net>
Date: Sat Nov 19 22:22:00 2016 +0100
bump dependencies (#103)
---
.gitignore | 3 +++
.travis.yml | 3 ++-
lib/DOMElement.js | 2 +-
lib/createElement.js | 2 +-
package.json | 4 ++--
5 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/.gitignore b/.gitignore
index c1a99ba..4a74f2c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,4 +3,7 @@
!.npmignore
!.travis.yml
+node_modules/
+
bundle.js
+yarn.lock
diff --git a/.travis.yml b/.travis.yml
index 8abdb52..6a2a8e2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,8 @@ node_js:
- '0.12'
- '4'
- '5'
- - 'stable'
+ - '6'
+ - '7'
addons:
apt:
diff --git a/lib/DOMElement.js b/lib/DOMElement.js
index 085242d..95aecf5 100644
--- a/lib/DOMElement.js
+++ b/lib/DOMElement.js
@@ -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)
diff --git a/lib/createElement.js b/lib/createElement.js
index 2691e2c..71f9290 100644
--- a/lib/createElement.js
+++ b/lib/createElement.js
@@ -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++) {
diff --git a/package.json b/package.json
index 2b23d12..8dc7649 100644
--- a/package.json
+++ b/package.json
@@ -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"
}
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/ltx.git
More information about the Pkg-javascript-commits
mailing list