Skip to content

Commit

Permalink
chore(release): pluginutils v4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Oct 27, 2020
1 parent 1740940 commit 4387386
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
16 changes: 16 additions & 0 deletions packages/pluginutils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @rollup/pluginutils ChangeLog

## v4.1.0

_2020-10-27_

### Bugfixes

- fix: attach scope object to for-loop (#616)

### Features

- feat: normalizePath (#550)

### Updates

- refactor: improve readability of attachScopes test (#551)

## v4.0.0

_2020-08-13_
Expand Down
14 changes: 7 additions & 7 deletions packages/pluginutils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rollup/pluginutils",
"version": "4.0.0",
"version": "4.1.0",
"publishConfig": {
"access": "public"
},
Expand All @@ -14,6 +14,11 @@
},
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"type": "commonjs",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/es/index.js"
},
"engines": {
"node": ">= 8.0.0"
},
Expand Down Expand Up @@ -79,15 +84,10 @@
"!**/types.ts"
]
},
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/es/index.js"
},
"nyc": {
"extension": [
".js",
".ts"
]
},
"type": "commonjs"
}
}

0 comments on commit 4387386

Please sign in to comment.