@gedit/logger
Advanced tools
Comparing version 0.1.13 to 0.1.14
@@ -22,3 +22,3 @@ "use strict"; | ||
var logger_watcher_1 = require("../common/logger-watcher"); | ||
var ws_connection_provider_1 = require("@gedit/connection/lib/browser/ws-connection-provider"); | ||
var connection_1 = require("@gedit/connection"); | ||
var browser_1 = require("@gedit/application-common/lib/browser"); | ||
@@ -37,3 +37,4 @@ exports.default = new inversify_1.ContainerModule(function (bind) { | ||
var loggerWatcher = ctx.container.get(logger_watcher_1.LoggerWatcher); | ||
var connection = ctx.container.get(ws_connection_provider_1.WebSocketConnectionProvider); | ||
var connection = ctx.container.get(connection_1.IConnectionProvider); | ||
// @ts-ignore | ||
var target = connection.createProxy(common_1.loggerPath, loggerWatcher.getLoggerClient()); | ||
@@ -40,0 +41,0 @@ function get(_, property) { |
{ | ||
"name": "@gedit/logger", | ||
"version": "0.1.13", | ||
"version": "0.1.14", | ||
"license": "MIT", | ||
@@ -12,6 +12,6 @@ "main": "lib/common/index", | ||
"dependencies": { | ||
"@gedit/application-common": "^0.1.13", | ||
"@gedit/connection": "^0.1.13", | ||
"@gedit/keyboard": "^0.1.13", | ||
"@gedit/utils": "^0.1.13" | ||
"@gedit/application-common": "^0.1.14", | ||
"@gedit/connection": "^0.1.14", | ||
"@gedit/keyboard": "^0.1.14", | ||
"@gedit/utils": "^0.1.14" | ||
}, | ||
@@ -33,3 +33,3 @@ "geditExtensions": [ | ||
}, | ||
"gitHead": "13de0f50548b14a82fe33a972956e9278bb97953" | ||
"gitHead": "df833a4712ccec3ce8a670a956fb5dfc9d32cdfc" | ||
} |
@@ -21,3 +21,3 @@ /******************************************************************************** | ||
import { LoggerWatcher } from '../common/logger-watcher'; | ||
import { WebSocketConnectionProvider } from '@gedit/connection/lib/browser/ws-connection-provider'; | ||
import { IConnectionProvider } from '@gedit/connection'; | ||
import { FrontendApplicationContribution } from '@gedit/application-common/lib/browser'; | ||
@@ -38,3 +38,4 @@ | ||
const loggerWatcher = ctx.container.get(LoggerWatcher); | ||
const connection = ctx.container.get(WebSocketConnectionProvider); | ||
const connection = ctx.container.get<IConnectionProvider>(IConnectionProvider); | ||
// @ts-ignore | ||
const target = connection.createProxy<LoggerServer>(loggerPath, loggerWatcher.getLoggerClient()); | ||
@@ -41,0 +42,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1103
65887
Updated@gedit/connection@^0.1.14
Updated@gedit/keyboard@^0.1.14
Updated@gedit/utils@^0.1.14