web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
1.2 KiB

  1. # changelog
  2. ## 1.0.1
  3. * Relax node type to `BaseNode` ([#17](https://github.com/Rich-Harris/estree-walker/pull/17))
  4. ## 1.0.0
  5. * Don't cache child keys
  6. ## 0.9.0
  7. * Add `this.remove()` method
  8. ## 0.8.1
  9. * Fix pkg.files
  10. ## 0.8.0
  11. * Adopt `estree` types
  12. ## 0.7.0
  13. * Add a `this.replace(node)` method
  14. ## 0.6.1
  15. * Only traverse nodes that exist and have a type ([#9](https://github.com/Rich-Harris/estree-walker/pull/9))
  16. * Only cache keys for nodes with a type ([#8](https://github.com/Rich-Harris/estree-walker/pull/8))
  17. ## 0.6.0
  18. * Fix walker context type
  19. * Update deps, remove unncessary Bublé transformation
  20. ## 0.5.2
  21. * Add types to package
  22. ## 0.5.1
  23. * Prevent context corruption when `walk()` is called during a walk
  24. ## 0.5.0
  25. * Export `childKeys`, for manually fixing in case of malformed ASTs
  26. ## 0.4.0
  27. * Add TypeScript typings ([#3](https://github.com/Rich-Harris/estree-walker/pull/3))
  28. ## 0.3.1
  29. * Include `pkg.repository` ([#2](https://github.com/Rich-Harris/estree-walker/pull/2))
  30. ## 0.3.0
  31. * More predictable ordering
  32. ## 0.2.1
  33. * Keep `context` shape
  34. ## 0.2.0
  35. * Add ES6 build
  36. ## 0.1.3
  37. * npm snafu
  38. ## 0.1.2
  39. * Pass current prop and index to `enter`/`leave` callbacks
  40. ## 0.1.1
  41. * First release