New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@cara/porter

Package Overview
Dependencies
Maintainers
3
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cara/porter - npm Package Compare versions

Comparing version 4.0.0-beta.17 to 4.0.0-beta.18

4

package.json
{
"name": "@cara/porter",
"description": "A middleware for web modules",
"version": "4.0.0-beta.17",
"version": "4.0.0-beta.18",
"main": "src/porter.js",

@@ -43,3 +43,3 @@ "repository": {

"license": "BSD-3-Clause",
"gitHead": "a2acb5a36e5b879905ee568d1d6b6bd5f3a5b085"
"gitHead": "38773a6381730f653c762bd35967c8c42f5ffacb"
}

@@ -568,3 +568,5 @@ 'use strict';

for (const mod of Object.values(this.files)) {
if (mod.isRootEntry || mod.file.endsWith('.wasm')) entries.push(mod.file);
if (mod.isRootEntry) entries.push(mod.file);
// .wasm needs to be bundled before other entries to generate correct manifest
if (mod.file.endsWith('.wasm')) entries.unshift(mod.file);
}

@@ -571,0 +573,0 @@

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