-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from getconversio/feature/big-refactor
Refactor to new ES6 classes, Promises
- Loading branch information
Showing
17 changed files
with
1,912 additions
and
1,196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"root": true, | ||
"extends": ["conversio"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
language: node_js | ||
node_js: | ||
- '4' | ||
- '6' | ||
- '8' | ||
deploy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
3.0.0 | ||
===== | ||
|
||
- Removed all callbacks, only Promise is supported now. | ||
- Removed `authorise` method in favor of `authorize`. | ||
- Removed `callback` method, `verify` will now throw an Error. | ||
- Removed the logger, use `DEBUG=node-bigcommerce:*` as an environment variable to get debug messages. | ||
- Dropped support of node-v4 for missing `class` implementation. | ||
- Removed [catalogue](https://github.com/getconversio/node-bigcommerce/pull/18) hack, please use `apiVersion` configuration property. |
Oops, something went wrong.