@messagebird/client
Advanced tools
Comparing version 0.10.0 to 0.10.1-alpha-1
@@ -0,1 +1,17 @@ | ||
# [0.10.0](https://git.messagebird.io/frontend/javascript-webrtc-sdk/compare/v0.9.0...v0.10.0) (2020-02-12) | ||
### Bug Fixes | ||
* correct import path ([36cac07](https://git.messagebird.io/frontend/javascript-webrtc-sdk/commit/36cac07)) | ||
* move registration to initial connection ([d7430b6](https://git.messagebird.io/frontend/javascript-webrtc-sdk/commit/d7430b6)) | ||
* use enum ([b8fec8a](https://git.messagebird.io/frontend/javascript-webrtc-sdk/commit/b8fec8a)) | ||
### Features | ||
* add retry connection method, handle error ([9268a71](https://git.messagebird.io/frontend/javascript-webrtc-sdk/commit/9268a71)) | ||
* add retry method ([f80ab58](https://git.messagebird.io/frontend/javascript-webrtc-sdk/commit/f80ab58)) | ||
* handle retry event ([a66b34f](https://git.messagebird.io/frontend/javascript-webrtc-sdk/commit/a66b34f)) | ||
# [0.9.0](https://git.messagebird.io/frontend/javascript-webrtc-sdk/compare/v0.8.0...v0.9.0) (2020-01-17) | ||
@@ -2,0 +18,0 @@ |
{ | ||
"name": "@messagebird/client", | ||
"version": "0.10.0", | ||
"license": "UNLICENSED", | ||
"files": [ | ||
"dist-*/", | ||
"bin/" | ||
], | ||
"pika": true, | ||
"sideEffects": false, | ||
"version": "0.10.1-alpha-1", | ||
"source": "./src/index.ts", | ||
"types": "pkg/dist-types/index.d.ts", | ||
"author": "MessageBird <product@messagebird.com> (https://messagebird.com)", | ||
"contributors": [ | ||
@@ -15,7 +11,75 @@ "Niek Kruse <niek@messagebird.com> (https://messagebird.com)", | ||
], | ||
"dependencies": { | ||
"@babel/runtime": "^7.3.1", | ||
"events": "^3.0.0", | ||
"jssip": "^3.3.3" | ||
"files": [ | ||
"types/**", | ||
"dist/**" | ||
], | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
}, | ||
"license": "UNLICENSED", | ||
"scripts": { | ||
"coverage": "jest --coverage", | ||
"build": "dotenv-load pika build", | ||
"clean-es": "rimraf es", | ||
"watch-es": "watch \"npm run build-es\" src/ -d", | ||
"clean-types": "rimraf types", | ||
"build-types": "yarn clean-types && tsc -p tsconfig.dts.json", | ||
"type-check": "tsc", | ||
"lint": "eslint 'src/**/*.{ts, tsx}'", | ||
"test": "NODE_ENV=testing jest", | ||
"bundlesize": "bundlesize", | ||
"prettier": "prettier --write \"{,!(node_modules|custom-typings|types)/**/}*.{js,jsx,ts,tsx,json,md}\"", | ||
"prepublishOnly": "yarn build-types && yarn build", | ||
"version": "npm run build" | ||
}, | ||
"@pika/pack": { | ||
"pipeline": [ | ||
[ | ||
"@pika/plugin-standard-pkg", | ||
{ | ||
"exclude": [ | ||
"__specs__/**/*" | ||
] | ||
} | ||
], | ||
[ | ||
"@pika/plugin-build-node" | ||
], | ||
[ | ||
"@pika/plugin-build-web" | ||
], | ||
[ | ||
"@pika/plugin-build-types" | ||
] | ||
] | ||
}, | ||
"jest": { | ||
"transform": { | ||
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/jest-transform.js" | ||
}, | ||
"testMatch": [ | ||
"<rootDir>/src/**/?(*.)(spec|test).(ts|js)?(x)" | ||
], | ||
"moduleFileExtensions": [ | ||
"js", | ||
"jsx", | ||
"json", | ||
"ts", | ||
"tsx" | ||
], | ||
"testPathIgnorePatterns": [ | ||
"node_modules", | ||
"cypress" | ||
], | ||
"moduleDirectories": [ | ||
"node_modules", | ||
"src", | ||
"tests" | ||
], | ||
"roots": [ | ||
"<rootDir>/src" | ||
] | ||
}, | ||
"devDependencies": { | ||
@@ -46,2 +110,3 @@ "@babel/core": "^7.7.7", | ||
"@types/jest": "^24.0.9", | ||
"@types/platform": "^1.3.2", | ||
"babel-core": "^7.0.0-bridge.0", | ||
@@ -59,6 +124,8 @@ "babel-jest": "^24.1.0", | ||
}, | ||
"esnext": "dist-src/index.js", | ||
"main": "dist-node/index.js", | ||
"module": "dist-web/index.js", | ||
"types": "dist-types/index.d.ts" | ||
"dependencies": { | ||
"@babel/runtime": "^7.3.1", | ||
"events": "^3.0.0", | ||
"jssip": "^3.3.3", | ||
"platform": "^1.3.5" | ||
} | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
31071
4
36
26
697
2
+ Addedplatform@^1.3.5
+ Addedplatform@1.3.6(transitive)