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

@chialab/esbuild-rna

Package Overview
Dependencies
Maintainers
2
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chialab/esbuild-rna - npm Package Compare versions

Comparing version 0.15.39 to 0.15.40

14

lib/index.js

@@ -671,2 +671,16 @@ import path from 'path';

rnaBuild.files.forEach((result) => assignToResult(rnaResult, result));
const outputs = { ...rnaResult.metafile.outputs };
for (const outputKey in outputs) {
const output = outputs[outputKey];
if (!output.entryPoint) {
continue;
}
const entryPoint = path.resolve(rootDir, output.entryPoint.split('?')[0]);
const dependencies = Object.keys(output.inputs)
.map((input) => path.resolve(rootDir, input.split('?')[0]));
rnaBuild.collectDependencies(entryPoint, dependencies);
}
});

@@ -673,0 +687,0 @@ }

2

package.json
{
"name": "@chialab/esbuild-rna",
"type": "module",
"version": "0.15.39",
"version": "0.15.40",
"description": "A framework for esbuild plugins with transform and emit capabilities.",

@@ -6,0 +6,0 @@ "main": "lib/index.js",

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