Bump dependencies

This commit is contained in:
eight 2019-10-12 17:47:52 +08:00
parent 90f01aae5c
commit 809b6ff2fb
4 changed files with 7 additions and 6 deletions

View File

@ -32,7 +32,7 @@ const tokenManager = (() => {
}
};
return {getToken, revokeToken, getClientId};
return {getToken, revokeToken, getClientId, buildKeys};
function getClientId(name) {
return AUTH[name].clientId;

View File

@ -8,7 +8,7 @@
"devDependencies": {
"archiver": "^3.1.1",
"codemirror": "^5.48.4",
"db-to-cloud": "^0.4.1",
"db-to-cloud": "^0.4.2",
"dropbox": "^4.0.30",
"endent": "^1.3.0",
"eslint": "^6.3.0",

View File

@ -1,9 +1,9 @@
## db-to-cloud v0.4.1
## db-to-cloud v0.4.2
Installed via npm - source code:
https://github.com/eight04/db-to-cloud/tree/v0.4.1
https://github.com/eight04/db-to-cloud/tree/v0.4.2
Bundled code:
https://unpkg.com/db-to-cloud@0.4.1/dist/db-to-cloud.min.js
https://unpkg.com/db-to-cloud@0.4.2/dist/db-to-cloud.min.js

View File

@ -500,7 +500,8 @@ var dbToCloud = (function (exports) {
put,
delete: delete_,
syncNow,
drive: () => _drive2
drive: () => _drive2,
isInit: () => Boolean(state && state.enabled)
};
function use(newDrive) {