Socket
Socket
Sign inDemoInstall

decky-frontend-lib

Package Overview
Dependencies
Maintainers
1
Versions
153
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

decky-frontend-lib - npm Package Compare versions

Comparing version 3.23.0 to 3.23.1

7

dist/webpack.js

@@ -27,3 +27,8 @@ export let webpackCache = {};

for (let i of Object.keys(initReq.m)) {
webpackCache[i] = initReq(i);
try {
webpackCache[i] = initReq(i);
}
catch (e) {
console.debug("[DFL:Webpack]: Ignoring require error for module", i, e);
}
}

@@ -30,0 +35,0 @@ }

2

package.json
{
"name": "decky-frontend-lib",
"version": "3.23.0",
"version": "3.23.1",
"description": "A library for building decky plugins",

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

@@ -40,3 +40,7 @@ declare global {

for (let i of Object.keys(initReq.m)) {
webpackCache[i] = initReq(i);
try {
webpackCache[i] = initReq(i);
} catch (e) {
console.debug("[DFL:Webpack]: Ignoring require error for module", i, e);
}
}

@@ -43,0 +47,0 @@ }

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