Skip to content

Commit

Permalink
Merge pull request kubernetes-client#199 from brendandburns/deps
Browse files Browse the repository at this point in the history
Remove explicit references to bluebird.
  • Loading branch information
k8s-ci-robot authored Feb 1, 2019
2 parents 42820a1 + 716ea62 commit 3a1d831
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Changelog for the Kubernetes typescript client.

## 0.8.1
* Fix an issue with exposing bluebird types for `Promise` that broke `es6` users.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kubernetes/client-node",
"version": "0.8.0",
"version": "0.8.1",
"description": "NodeJS client for kubernetes",
"repository": {
"type": "git",
Expand Down Expand Up @@ -49,7 +49,6 @@
"dependencies": {
"@types/node": "^10.12.0",
"@types/request": "^2.47.1",
"bluebird": "^3.5.2",
"byline": "^5.0.0",
"isomorphic-ws": "^4.0.1",
"js-yaml": "^3.12.0",
Expand All @@ -61,7 +60,6 @@
"ws": "^6.1.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.24",
"@types/chai": "^4.1.6",
"@types/js-yaml": "^3.11.2",
"@types/mocha": "^5.2.5",
Expand Down
1 change: 0 additions & 1 deletion src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

import request = require('request');
import http = require('http');
import Promise = require('bluebird');

let defaultBasePath = 'https://localhost';

Expand Down

0 comments on commit 3a1d831

Please sign in to comment.