Releases: denoland/dnt
Releases · denoland/dnt
0.29.0
0.28.0
0.27.0
0.26.0
0.25.3
What's Changed
- fix: upgrade undici shim from 5.3.0 to 5.5.1 #174
- Undici >= v4.8.2 <= 5.5.0 had a MITM vulnerability: GHSA-pgw7-wx7w-2w33
Full Changelog: 0.25.2...0.25.3
0.25.2
0.25.1
0.25.0
What's Changed
- feat: align lib option with tsconfig lib option #167
BREAKING CHANGE: The lib option now aligns with how you would specify it in tsconfig.json.
For example, to include DOM types do:await build({ // ...etc... compilerOptions: { lib: ["es2021", "dom"], }, });
- feat: add
Array.prototype.findLast
andfindLastIndex
polyfills #168 - fix: correct
Error#cause
typings #169
Full Changelog: 0.24.0...0.25.0
0.24.0
What's Changed
- feat: upgrade to deno-shim 0.6 and crypto-shim 0.3 #158
- feat: upgrade undici to 5.3 & automatically include @types/node dev dependency for undici #159
- feat: add types for lib options (#162)
- fix: exclude DOM types by default #160
BREAKING CHANGE: DOM types were erroenously included by default before. If you still want them then you can do:await build({ // ...etc... compilerOptions: { lib: ["lib.es2021.d.ts", "lib.dom.d.ts"], }, });