[Pkg-javascript-commits] [sockjs-client] 177/350: Upgrade deps
tonnerre at ancient-solutions.com
tonnerre at ancient-solutions.com
Fri Aug 5 01:04:18 UTC 2016
This is an automated email from the git hooks/post-receive script.
tonnerre-guest pushed a commit to branch upstream
in repository sockjs-client.
commit 49ecbb6c9849fda875cb94d527fdb4aed75cb8b1
Author: Bryce Kahle <bkahle at gmail.com>
Date: Sun Oct 19 22:07:21 2014 -0400
Upgrade deps
---
gulpfile.js | 26 ++++++++++----------------
package.json | 16 ++++++++--------
2 files changed, 18 insertions(+), 24 deletions(-)
diff --git a/gulpfile.js b/gulpfile.js
index 46d1348..85333ca 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -31,32 +31,26 @@ gulp.task('watch', function () {
});
gulp.task('testbundle', function() {
- return browserify('./lib/entry.js')
- .ignore('querystring')
- .bundle({
+ return browserify('./lib/entry.js', {
standalone: 'SockJS'
, debug: true
})
+ .ignore('querystring')
+ .bundle()
.pipe(mold.transformSourcesRelativeTo(jsRoot))
.pipe(exorcist(path.join(__dirname, 'tests/html/lib/sockjs.js.map')))
.pipe(source('sockjs.js'))
.pipe(gulp.dest('./tests/html/lib/'))
;
-
- // return browserify('./tests/html/lib/alltests.js')
- // .bundle()
- // .pipe(source('alltestsbundle.js'))
- // .pipe(gulp.dest('./tests/html/lib/'))
- // ;
});
gulp.task('browserify', function () {
- return browserify('./lib/entry.js', { fullPaths: true })
- .ignore('querystring')
- .bundle({
+ return browserify('./lib/entry.js', {
standalone: 'SockJS'
, debug: true
})
+ .ignore('querystring')
+ .bundle()
.pipe(mold.transformSourcesRelativeTo(jsRoot))
.pipe(exorcist(path.join(__dirname, 'build/sockjs.js.map')))
.pipe(source('sockjs.js'))
@@ -65,16 +59,16 @@ gulp.task('browserify', function () {
});
gulp.task('browserify:min', function () {
- return browserify('./lib/entry.js', { fullPaths: true })
+ return browserify('./lib/entry.js', {
+ standalone: 'SockJS'
+ })
.ignore('querystring')
.plugin('minifyify', {
map: libName + '.min.js.map'
, compressPath: jsRoot
, output: './build/' + libName + '.min.js.map'
})
- .bundle({
- standalone: 'SockJS'
- })
+ .bundle()
.pipe(source(libName + '.min.js'))
.pipe(gulp.dest('./build/'))
;
diff --git a/package.json b/package.json
index e2edea8..a46d856 100644
--- a/package.json
+++ b/package.json
@@ -28,20 +28,20 @@
"json3": "^3.3.2"
},
"devDependencies": {
- "browserify": "^4.2.3",
- "debug": "^2.0.0",
+ "browserify": "^6.1.0",
+ "debug": "^2.1.0",
"exorcist": "^0.1.6",
"expect.js": "~0.3.1",
- "gulp": "^3.8.7",
+ "gulp": "^3.8.8",
"gulp-eslint": "~0.1.8",
- "gulp-mocha": "~1.1.0",
- "minifyify": "^3.0.12",
- "mocha": "^1.21.4",
+ "gulp-mocha": "~1.1.1",
+ "minifyify": "^4.4.0",
+ "mocha": "^1.21.5",
"mold-source-map": "^0.3.0",
- "node-static": "^0.5.9",
+ "node-static": "^0.7.6",
"proxyquire": "~1.0.1",
"sockjs": "^0.3.9",
- "vinyl-source-stream": "^0.1.1",
+ "vinyl-source-stream": "^1.0.0",
"zuul": "git://github.com/brycekahle/zuul#ngrok"
},
"homepage": "http://sockjs.org",
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/sockjs-client.git
More information about the Pkg-javascript-commits
mailing list