Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@wixc3/engine-core

Package Overview
Dependencies
Maintainers
0
Versions
340
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wixc3/engine-core - npm Package Compare versions

Comparing version 49.1.0 to 49.1.1

2

dist/com/logs.d.ts

@@ -14,3 +14,3 @@ import type { Message } from './message-types.js';

export declare const UNHANDLED: (message: Message, hostId: string) => string;
export declare const reportError: typeof globalThis.reportError;
export declare function reportError(e: unknown): void;
//# sourceMappingURL=logs.d.ts.map

@@ -13,6 +13,5 @@ export const GLOBAL_REF = (id) => `Com with id "${id}" is already running.`;

export const UNHANDLED = (message, hostId) => `[DEBUG] unhandledMessage received at ${hostId}. message:\n${JSON.stringify(message, null, 2)}`;
export const reportError = globalThis.reportError ??
function reportError(e) {
console.error(e);
};
export function reportError(e) {
console.error(e);
}
//# sourceMappingURL=logs.js.map
{
"name": "@wixc3/engine-core",
"version": "49.1.0",
"version": "49.1.1",
"type": "module",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -34,6 +34,4 @@ import type { Message } from './message-types.js';

export const reportError =
globalThis.reportError ??
function reportError(e: unknown) {
console.error(e);
};
export function reportError(e: unknown) {
console.error(e);
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc