We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5bf1fa commit 36e0e8fCopy full SHA for 36e0e8f
lib/postgresql.js
@@ -16,9 +16,7 @@ var util = require('util');
16
var debug = require('debug')('loopback:connector:postgresql');
17
18
// Add support for node 0.10.x
19
-if (typeof Promise == 'undefined') {
20
- global.Promise = require('promise-polyfill');
21
-}
+var Promise = require('bluebird');
22
23
/**
24
*
package.json
@@ -18,14 +18,13 @@
},
"dependencies": {
"async": "^0.9.0",
+ "bluebird": "^3.4.6",
"debug": "^2.1.1",
"loopback-connector": "^2.1.0",
"pg": "^6.0.0",
- "promise-polyfill": "^6.0.2",
25
"strong-globalize": "^2.6.2"
26
27
"devDependencies": {
28
- "bluebird": "^2.9.12",
29
"eslint": "^2.13.1",
30
"eslint-config-loopback": "^4.0.0",
31
"loopback-datasource-juggler": "^3.0.0-alpha.7",
0 commit comments