Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sockstream

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sockstream - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

dist/sockstream.js

18

gulpfile.babel.js

@@ -22,2 +22,6 @@ 'use strict';

gulp.task('compress', cb =>
runSequence(['compress:js'], cb)
);
gulp.task('build:clean', cb =>

@@ -32,12 +36,12 @@ runSequence('clean', ['build:js'], cb)

gulp.task('clean', ()=> {
del(['./build/js']);
del(['./build']);
});
gulp.task('build:js', ()=>
gulp.src('./src/js/*.js')
.pipe(changed('./build/js', {extension: '.js'}))
gulp.src('./src/*.js')
.pipe(changed('./build', {extension: '.js'}))
.pipe(babel({
presets: ['es2015', 'es2016', 'stage-0']
}))
.pipe(gulp.dest('./build/js'))
.pipe(gulp.dest('./build'))
.pipe(gulpIf(_sync, browserSync.reload({stream: true})))

@@ -47,3 +51,3 @@ );

gulp.task('watch:app', ()=> {
gulp.watch(['./src/js/*.js'], ['build:js']);
gulp.watch(['./src/*.js'], ['build:js']);
});

@@ -63,4 +67,4 @@

gulp.task('compress', ()=> {
gulp.src('./build/js/*.js')
gulp.task('compress:js', ()=> {
gulp.src('./build/*.js')
.pipe(minify({

@@ -67,0 +71,0 @@ ext:{

{
"name": "sockstream",
"version": "1.0.0",
"version": "1.1.0",
"description": "Provides a standard WebSocket thin manager",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc