Skip to content

Releases: denoland/dnt

0.29.0

26 Jul 17:23
f24871e
Compare
Choose a tag to compare

What's Changed

  • feat: upgrade for deno 1.24 #197
  • feat: add postBuild action #198

Full Changelog: 0.28.0...0.29.0

0.28.0

06 Jul 21:21
567a916
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.27.0...0.28.0

0.27.0

28 Jun 20:14
7446bd3
Compare
Choose a tag to compare

What's Changed

  • feat: add skipLibCheck option and enable by default by @roj1512 in #183
  • fix: handle unversioned skypack or esm.sh specifiers by not mapping them #184

New Contributors

Full Changelog: 0.26.0...0.27.0

0.26.0

15 Jun 19:02
9016cc5
Compare
Choose a tag to compare

What's Changed

  • feat: support peer dependencies in mappings #175
  • chore: upgrade deno_std to 0.143 #176

Full Changelog: 0.25.3...0.26.0

0.25.3

13 Jun 21:55
56c2f15
Compare
Choose a tag to compare

What's Changed

  • fix: upgrade undici shim from 5.3.0 to 5.5.1 #174

Full Changelog: 0.25.2...0.25.3

0.25.2

06 Jun 17:19
cd0efc3
Compare
Choose a tag to compare

What's Changed

  • fix: better pnpm support #171
  • fix: support declaration files being imported #172
  • chore: use wasmbuild #173

Full Changelog: 0.25.1...0.25.2

0.25.1

03 Jun 18:50
a4d06cd
Compare
Choose a tag to compare

What's Changed

  • fix: ensure that @types/... packages are resolved in more scenarios #170

Full Changelog: 0.25.0...0.25.1

0.25.0

03 Jun 16:57
7c6c786
Compare
Choose a tag to compare

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 and findLastIndex polyfills #168
  • fix: correct Error#cause typings #169

Full Changelog: 0.24.0...0.25.0

0.24.0

31 May 21:18
1bd0e02
Compare
Choose a tag to compare

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"],
      },
    });

0.23.0

11 Apr 22:45
524ab6b
Compare
Choose a tag to compare

What's Changed

  • fix: add json import assertion types by inlining the json as a JS value #149
  • feat: upgrade deno shim to 0.5 #152

Full Changelog: 0.22.0...0.23.0