Skip to content

Commit

Permalink
chore(release): node-resolve v10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Oct 27, 2020
1 parent 653e4c8 commit c496089
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions packages/node-resolve/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @rollup/plugin-node-resolve ChangeLog

## v10.0.0

_2020-10-27_

### Breaking Changes

- fix!: resolve hash in path (#588)

### Bugfixes

- fix: do not ignore exceptions (#564)

## v9.0.0

_2020-08-13_
Expand Down
14 changes: 7 additions & 7 deletions packages/node-resolve/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rollup/plugin-node-resolve",
"version": "9.0.0",
"version": "10.0.0",
"publishConfig": {
"access": "public"
},
Expand All @@ -12,6 +12,11 @@
"bugs": "https://github.com/rollup/plugins/issues",
"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": ">= 10.0.0"
},
Expand Down Expand Up @@ -78,10 +83,5 @@
"!**/recipes/**",
"!**/types.ts"
]
},
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/es/index.js"
},
"type": "commonjs"
}
}

0 comments on commit c496089

Please sign in to comment.