Skip to content

Commit 6fb069e

Browse files
committed
Rename bluebird import to BluebirdPromise, to explicitly show we don't rely on the Promise name.
Thanks @mhfrantz for the suggestion.
1 parent 467b8b0 commit 6fb069e

File tree

10 files changed

+22
-22
lines changed

10 files changed

+22
-22
lines changed

poelstra3/dist/myprogram.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ var a = mylib.myfunc();
44
var b = myotherlib.myotherfunc();
55
console.log(typeof a.foo);
66
console.log(typeof b.foo);
7-
myotherlib.bleh().then(function (x) {
7+
myotherlib.myAsync().then(function (x) {
88
console.log(x.foo);
99
});

poelstra3/node_modules/myotherlib/dist/index.d.ts

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

poelstra3/node_modules/myotherlib/dist/index.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

poelstra3/node_modules/myotherlib/ts/index.ts

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

poelstra3/ts/myprogram.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ var b = myotherlib.myotherfunc();
77
console.log(typeof a.foo); // string
88
console.log(typeof b.foo); // number
99

10-
myotherlib.bleh().then((x) => {
10+
myotherlib.myAsync().then((x) => {
1111
console.log(x.foo); // 42
1212
});

poelstra3poc/dist/myprogram.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ var a = mylib.myfunc();
44
var b = myotherlib.myotherfunc();
55
console.log(typeof a.foo);
66
console.log(typeof b.foo);
7-
myotherlib.bleh().then(function (x) {
7+
myotherlib.myAsync().then(function (x) {
88
console.log(x.foo);
99
});

poelstra3poc/node_modules/myotherlib/dist/index.d.ts

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

poelstra3poc/node_modules/myotherlib/dist/index.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

poelstra3poc/node_modules/myotherlib/ts/index.ts

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

poelstra3poc/ts/myprogram.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ var b = myotherlib.myotherfunc();
77
console.log(typeof a.foo); // string
88
console.log(typeof b.foo); // number
99

10-
myotherlib.bleh().then((x) => {
10+
myotherlib.myAsync().then((x) => {
1111
console.log(x.foo); // 42
1212
});

0 commit comments

Comments
 (0)