@feathersjs/socketio-client
Advanced tools
Comparing version 1.0.0 to 1.0.1
# Change Log | ||
## [v1.0.0](https://github.com/feathersjs/socketio-client/tree/v1.0.0) (2017-11-01) | ||
[Full Changelog](https://github.com/feathersjs/socketio-client/compare/v1.0.0-pre.3...v1.0.0) | ||
**Merged pull requests:** | ||
- Update dependencies for release [\#3](https://github.com/feathersjs/socketio-client/pull/3) ([daffl](https://github.com/daffl)) | ||
## [v1.0.0-pre.3](https://github.com/feathersjs/socketio-client/tree/v1.0.0-pre.3) (2017-10-23) | ||
@@ -4,0 +11,0 @@ [Full Changelog](https://github.com/feathersjs/socketio-client/compare/v1.0.0-pre.2...v1.0.0-pre.3) |
const Service = require('@feathersjs/socket-commons/client'); | ||
module.exports = function (connection, options) { | ||
function socketioClient (connection, options) { | ||
if (!connection) { | ||
@@ -35,2 +35,5 @@ throw new Error('Socket.io connection needs to be provided'); | ||
return initialize; | ||
}; | ||
} | ||
module.exports = socketioClient; | ||
module.exports.default = socketioClient; |
{ | ||
"name": "@feathersjs/socketio-client", | ||
"description": "The client for Socket.io through feathers-socketio", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"homepage": "https://github.com/feathersjs/socketio-client", | ||
"main": "lib/", | ||
"main": "lib/index.js", | ||
"keywords": [ | ||
@@ -8,0 +8,0 @@ "feathers", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6427
29