Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmurphy committed May 8, 2020
1 parent f12bf1d commit 190fb2c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0] - 2020-05-08

### Fixed

- `rollup-plugin-dts` needs to be told to ignore built-in modules so it doesn't throw a warning when it comes across one. I don't think this was actually breaking anything, but no noise is the best noise.

## [0.10.0] - 2020-05-08

### Changed
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ async function createTypes({
// build our Rollup input options for rollup-plugin-dts
const inputOptions: InputOptions = {
input,
external: builtinModules as string[],
plugins: [dts()],
onwarn: dtsOnWarn,
};
Expand Down

0 comments on commit 190fb2c

Please sign in to comment.