Skip to content

Commit 190fb2c

Browse files
committed
Prep for release
1 parent f12bf1d commit 190fb2c

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.11.0] - 2020-05-08
11+
12+
### Fixed
13+
14+
- `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.
15+
1016
## [0.10.0] - 2020-05-08
1117

1218
### Changed

src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ async function createTypes({
170170
// build our Rollup input options for rollup-plugin-dts
171171
const inputOptions: InputOptions = {
172172
input,
173+
external: builtinModules as string[],
173174
plugins: [dts()],
174175
onwarn: dtsOnWarn,
175176
};

0 commit comments

Comments
 (0)