diff --git a/package.json b/package.json index cbbba85..18ca7b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bybit-api", - "version": "1.3.0-beta.1", + "version": "1.3.0-beta.2", "description": "A production-ready Node.js connector for the Bybit APIs and WebSockets", "main": "lib/index.js", "types": "lib/index.d.ts", @@ -16,11 +16,8 @@ "build": "tsc", "pack": "webpack --config webpack/webpack.config.js", "prepush": "npm run build", - "prepublish": "npm run build" - }, - "repository": { - "type": "git", - "url": "https://github.com/tiagosiebler/bybit-api" + "prepublish": "npm run build", + "betapublish": "npm publish --tag beta" }, "author": "Tiago Siebler (https://github.com/tiagosiebler)", "contributors": [ @@ -63,6 +60,10 @@ "url": "https://github.com/sponsors/tiagosiebler" }, "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/tiagosiebler/bybit-api" + }, "bugs": { "url": "https://github.com/tiagosiebler/bybit-api/issues" }, diff --git a/src/websocket-client.ts b/src/websocket-client.ts index 2a29dc7..8534ee2 100644 --- a/src/websocket-client.ts +++ b/src/websocket-client.ts @@ -1,7 +1,7 @@ import { EventEmitter } from 'events'; -import { DefaultLogger } from './logger'; import { RestClient } from './rest-client'; +import { DefaultLogger } from './logger'; import { signMessage, serializeParams } from './util/requestUtils'; // import WebSocket from 'ws'; import WebSocket from 'isomorphic-ws'; diff --git a/tsconfig.json b/tsconfig.json index c944cc4..4be19e1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,6 @@ "compileOnSave": true, "compilerOptions": { "declaration": true, - "declarationMap": true, "allowJs": true, "target": "es6", "moduleResolution": "node",