Skip to content

Commit 716ea62

Browse files
committed
Remove explicit references to bluebird.
1 parent 42820a1 commit 716ea62

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Changelog for the Kubernetes typescript client.
2+
3+
## 0.8.1
4+
* Fix an issue with exposing bluebird types for `Promise` that broke `es6` users.

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kubernetes/client-node",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "NodeJS client for kubernetes",
55
"repository": {
66
"type": "git",
@@ -49,7 +49,6 @@
4949
"dependencies": {
5050
"@types/node": "^10.12.0",
5151
"@types/request": "^2.47.1",
52-
"bluebird": "^3.5.2",
5352
"byline": "^5.0.0",
5453
"isomorphic-ws": "^4.0.1",
5554
"js-yaml": "^3.12.0",
@@ -61,7 +60,6 @@
6160
"ws": "^6.1.0"
6261
},
6362
"devDependencies": {
64-
"@types/bluebird": "^3.5.24",
6563
"@types/chai": "^4.1.6",
6664
"@types/js-yaml": "^3.11.2",
6765
"@types/mocha": "^5.2.5",

src/api.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
import request = require('request');
1414
import http = require('http');
15-
import Promise = require('bluebird');
1615

1716
let defaultBasePath = 'https://localhost';
1817

0 commit comments

Comments
 (0)