Socket
Socket
Sign inDemoInstall

@wixc3/engine-core

Package Overview
Dependencies
Maintainers
69
Versions
332
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 45.3.0 to 45.3.1

14

dist/runtime-feature.js

@@ -28,7 +28,11 @@ "use strict";

};
this.disposables.add('disposal handlers', async () => {
const featureDisposeHandlers = this.disposeHandlers.get(this.environment.env) || new Set();
for (const handler of featureDisposeHandlers) {
await handler();
}
this.disposables.add({
timeout: 5000,
name: `[${this.environment.env}] environment disposal handlers`,
dispose: async () => {
const featureDisposeHandlers = this.disposeHandlers.get(this.environment.env) || new Set();
for (const handler of featureDisposeHandlers) {
await handler();
}
},
});

@@ -35,0 +39,0 @@ }

{
"name": "@wixc3/engine-core",
"version": "45.3.0",
"version": "45.3.1",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "exports": {

@@ -29,7 +29,11 @@ import type { RuntimeEngine } from './runtime-engine.js';

) {
this.disposables.add('disposal handlers', async () => {
const featureDisposeHandlers = this.disposeHandlers.get(this.environment.env) || new Set();
for (const handler of featureDisposeHandlers) {
await handler();
}
this.disposables.add({
timeout: 5_000,
name: `[${this.environment.env}] environment disposal handlers`,
dispose: async () => {
const featureDisposeHandlers = this.disposeHandlers.get(this.environment.env) || new Set();
for (const handler of featureDisposeHandlers) {
await handler();
}
},
});

@@ -36,0 +40,0 @@ }

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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