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

@web/rollup-plugin-import-meta-assets

Package Overview
Dependencies
Maintainers
7
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/rollup-plugin-import-meta-assets - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

6

CHANGELOG.md
# @web/rollup-plugin-import-meta-assets
## 1.0.6
### Patch Changes
- b77e5d16: fix(rollup-plugin-import-meta-assets): skip unnecessary sourcemap generation
## 1.0.5

@@ -4,0 +10,0 @@

2

package.json
{
"name": "@web/rollup-plugin-import-meta-assets",
"version": "1.0.5",
"version": "1.0.6",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

@@ -67,2 +67,3 @@ /* eslint-disable @typescript-eslint/ban-ts-comment */

const magicString = new MagicString(code);
let modifiedCode = false;

@@ -93,2 +94,3 @@ await asyncWalk(ast, {

);
modifiedCode = true;
} catch (error) {

@@ -107,3 +109,3 @@ if (warnOnError) {

code: magicString.toString(),
map: magicString.generateMap({ hires: true }),
map: modifiedCode ? magicString.generateMap({ hires: true }) : null,
};

@@ -110,0 +112,0 @@ },

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