upgrade dependencies to latest versions and fix bugs

This commit is contained in:
Alan Hamlett
2016-06-29 14:32:00 -07:00
parent e8a73a3846
commit afc10fb7c4
19 changed files with 698 additions and 50 deletions

View File

@@ -1,10 +1,10 @@
/* global chrome */
// Core
var WakaTime = require("./core/WakaTime");
var WakaTimeCore = require("./core/WakaTimeCore").default;
// initialize class
var wakatime = new WakaTime();
var wakatime = new WakaTimeCore();
// Holds currently open connections (ports) with devtools
// Uses tabId as index key.
@@ -97,4 +97,4 @@ chrome.runtime.onConnect.addListener(function (port) {
});
}
});
});