1.3.0-beta.2: types cleanup and webpack trim

This commit is contained in:
tiagosiebler
2020-12-13 17:55:01 +00:00
parent 0606525e96
commit a75924c0ac
3 changed files with 8 additions and 8 deletions

View File

@@ -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"
},

View File

@@ -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';

View File

@@ -2,7 +2,6 @@
"compileOnSave": true,
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"allowJs": true,
"target": "es6",
"moduleResolution": "node",