Socket
Socket
Sign inDemoInstall

@rollup/pluginutils

Package Overview
Dependencies
Maintainers
4
Versions
26
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 3.0.8 to 3.0.9

15

CHANGELOG.md
# @rollup/pluginutils ChangeLog
## v3.0.9
_2020-04-12_
### Bugfixes
- fix: resolve relative paths starting with "./" (#180)
### Updates
- chore: Don't bundle micromatch (#220)
- chore: add missing typescript devDep (238b140)
- chore: Use readonly arrays, add TSDoc (#187)
- chore: Use typechecking (2ae08eb)
## v3.0.8

@@ -4,0 +19,0 @@

16

package.json
{
"name": "@rollup/pluginutils",
"version": "3.0.8",
"version": "3.0.9",
"publishConfig": {

@@ -27,3 +27,3 @@ "access": "public"

"lint:docs": "prettier --single-quote --write README.md",
"lint:js": "eslint --fix --cache src --ext .js,.ts",
"lint:js": "eslint --fix --cache src test types --ext .js,.ts",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",

@@ -48,16 +48,16 @@ "prebuild": "del-cli dist",

"peerDependencies": {
"rollup": "^1.20.0"
"rollup": "^1.20.0||^2.0.0"
},
"dependencies": {
"estree-walker": "^1.0.1"
"@types/estree": "0.0.39",
"estree-walker": "^1.0.1",
"micromatch": "^4.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^3.0.0",
"@types/estree": "0.0.39",
"@types/jest": "^24.9.0",
"@types/micromatch": "^3.1.1",
"@types/node": "^12.12.25",
"micromatch": "^4.0.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^3.7.5"

@@ -64,0 +64,0 @@ },

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

// eslint-disable-next-line import/no-unresolved
import { BaseNode } from 'estree';

@@ -7,7 +8,3 @@

declarations: { [key: string]: boolean };
addDeclaration(
node: BaseNode,
isBlockDeclaration: boolean,
isVar: boolean
): void;
addDeclaration(node: BaseNode, isBlockDeclaration: boolean, isVar: boolean): void;
contains(name: string): boolean;

@@ -39,6 +36,3 @@ }

*/
export function attachScopes(
ast: BaseNode,
propertyName?: string
): AttachedScope;
export function attachScopes(ast: BaseNode, propertyName?: string): AttachedScope;

@@ -45,0 +39,0 @@ /**

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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