Skip to content

Latest commit

 

History

History
79 lines (42 loc) · 1.49 KB

CHANGELOG.md

File metadata and controls

79 lines (42 loc) · 1.49 KB

Changelog

0.6.18

Patch Changes

  • 07e5f02: fix: CI build

0.6.17

Patch Changes

  • c73840d: fix: Actually add provenance

0.6.16

Patch Changes

  • af2405a: patch: Add changesets, provenance

0.6.15

PINNED: [email protected]

Patch Changes

Pin engines field to >= 10

0.6.14

PINNED: [email protected]

Patch Changes

Fix regression in legacy.mjs introduced in 0.6.13.

0.6.13

PINNED: [email protected]

Patch Changes

Fix types for neotraverse/legacy for pre-TypeScript 4.5(when export maps were not supported).

0.6.12

PINNED: [email protected]

Patch Changes

Earlier, neotraverse/legacy did not work with WebPack 4, as it does not support export maps. Now this package provides direct fallback for CJS.

0.6.11

PINNED: [email protected]

Patch Changes

Fix types for neotraverse/legacy. I am sacrificing types for CJS in favor of ESM.

Use the following to get type-safety

const traverse = require('neotraverse/legacy');
//    ^ It isn't typed

const neoTraverse = traverse as traverse['default'];
//    ^ It is typed

0.6.10

PINNED: [email protected]

Patch Changes

Fix types for neotraverse/legacy. Now both CJS and ESM are properly typed. CAVEAT: ESM import in typescript doesn't provide TraverseContext and TraverseOptions types. Import that from neotraverse instead.

Fresh start. Check out the CHANGELOG 0.6.9 for a list of changes prior to this release.