Socket
Socket
Sign inDemoInstall

rollup-pluginutils

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-pluginutils - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0

4

CHANGELOG.md
# rollup-pluginutils changelog
## 1.3.0
* Use correct path separator on Windows
## 1.2.0

@@ -4,0 +8,0 @@

@@ -219,2 +219,3 @@ 'use strict';

var included = !include.length;
id = id.split(path.sep).join('/');

@@ -221,0 +222,0 @@ include.forEach(function (pattern) {

3

dist/pluginutils.es6.js
import { walk } from 'estree-walker';
import { resolve } from 'path';
import { sep, resolve } from 'path';
import { makeRe } from 'minimatch';

@@ -217,2 +217,3 @@

var included = !include.length;
id = id.split(sep).join('/');

@@ -219,0 +220,0 @@ include.forEach(function (pattern) {

{
"name": "rollup-pluginutils",
"description": "Functionality commonly needed by Rollup plugins",
"version": "1.2.0",
"version": "1.3.0",
"main": "dist/pluginutils.cjs.js",

@@ -29,3 +29,17 @@ "jsnext:main": "dist/pluginutils.es6.js",

"README.md"
]
],
"repository": {
"type": "git",
"url": "git+https://github.com/rollup/rollup-pluginutils.git"
},
"keywords": [
"rollup",
"utils"
],
"author": "Rich Harris <richard.a.harris@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rollup/rollup-pluginutils/issues"
},
"homepage": "https://github.com/rollup/rollup-pluginutils#readme"
}

@@ -1,2 +0,2 @@

import { resolve } from 'path';
import { resolve, sep } from 'path';
import { makeRe } from 'minimatch';

@@ -11,2 +11,3 @@ import ensureArray from './utils/ensureArray';

var included = !include.length;
id = id.split(sep).join('/');

@@ -13,0 +14,0 @@ include.forEach( pattern => {

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