Socket
Socket
Sign inDemoInstall

@web/dev-server-rollup

Package Overview
Dependencies
Maintainers
7
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/dev-server-rollup - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

6

CHANGELOG.md
# @web/dev-server-rollup
## 0.2.2
### Patch Changes
- e0ee85f: make sure absolute paths are always returned as-is
## 0.2.1

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

4

dist/createRollupPluginContextAdapter.js

@@ -56,5 +56,3 @@ "use strict";

return {
id: resolvedId.startsWith(importerDir)
? resolvedId
: path_1.default.join(importerDir, resolvedId),
id: path_1.default.isAbsolute(resolvedId) ? resolvedId : path_1.default.join(importerDir, resolvedId),
};

@@ -61,0 +59,0 @@ }

{
"name": "@web/dev-server-rollup",
"version": "0.2.1",
"version": "0.2.2",
"publishConfig": {

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

@@ -75,5 +75,3 @@ import path from 'path';

return {
id: resolvedId.startsWith(importerDir)
? resolvedId
: path.join(importerDir, resolvedId),
id: path.isAbsolute(resolvedId) ? resolvedId : path.join(importerDir, resolvedId),
};

@@ -80,0 +78,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