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.

пре 3 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. 2.2.3 / 2019-10-24
  2. ==================
  3. - (fix) Fix crash on spread (#94)
  4. 2.2.2 / 2019-10-24
  5. ==================
  6. - (improvement) Add support for retrieving props from a spread with object expression (#93)
  7. 2.2.1 / 2019-06-30
  8. ==================
  9. - (improvement) Account for TypeCastExpression in the utils
  10. 2.2.0 / 2019-06-25
  11. ==================
  12. - (fix) Fix getLiteralPropValue for TS-specific node types.
  13. - (chore) upgrade dependencies.
  14. - (improvement) Stop throwing errors when unknown AST nodes are encountered.
  15. - (dev) CI changes.
  16. 2.1.0 / 2018-04-19
  17. ==================
  18. - Fix undefined bug for template strings. #45
  19. - Adding support for `objectRestSpread` within props #60
  20. - Accommodate ExperimentalSpreadProperty in prop values #75
  21. - Account for SpreadElement AST Nodes #76
  22. - Support OptionalMemberExpression AST nodes #77
  23. - Add support to Typescript's node types #72
  24. 2.0.1 / 2017-08-31
  25. ==================
  26. - [fix] Add support for BindExpression
  27. 2.0.0 / 2017-07-07
  28. ==================
  29. - [breaking] Remove undefined return from `propName` so it always returns a value.
  30. 1.4.1 / 2017-04-19
  31. ==================
  32. - [fix] - Fixing fatal throw in `getPropValue` for `ArrowFunctionExpression`
  33. 1.4.0 / 2017-02-02
  34. ==================
  35. - [new] Add eventHandlers and eventHandlersByType to API. These are the event names for DOM elements on JSX-using libraries such as React, inferno, and preact.
  36. 1.3.5 / 2016-12-14
  37. ==================
  38. - [fix] Normalize literals "true" and "false" before converting to boolean in Literal prop value extractor.
  39. 1.3.4 / 2016-11-15
  40. ==================
  41. - [fix] Recursively resolve JSXMemberExpression names for elementType. (i.e. `<Component.Render.Me />`). Fixes [#9](https://github.com/evcohen/jsx-ast-utils/issues/9)
  42. 1.3.3 / 2016-10-28
  43. ==================
  44. - [fix] Add support for `ArrayExpression`.
  45. 1.3.2 / 2016-10-11
  46. ==================
  47. - [fix] Add support for `UpdateExpression`.
  48. 1.3.1 / 2016-07-13
  49. ==================
  50. - [fix] Add `JSXElement` to expression types to handle recursively extracting prop value.
  51. 1.3.0 / 2016-07-12
  52. ==================
  53. - [new] Add support for `TaggedTemplateExpression`.
  54. 1.2.1 / 2016-06-15
  55. ==================
  56. - [fix] Point to `lib` instead of `src` for root exports.
  57. 1.2.0 / 2016-06-15
  58. ==================
  59. - [new] Export functions from root so they can be imported like the following: `require('jsx-ast-utils/{function}')`.
  60. 1.1.1 / 2016-06-12
  61. ==================
  62. - [fix] Better support for expressions in `TemplateLiteral` extraction.
  63. 1.1.0 / 2016-06-10
  64. ==================
  65. - [new] Support for namespaced element names.
  66. - [new] Add `propName` to API to get correct name for prop.
  67. 1.0.1 / 2016-06-10
  68. ==================
  69. - [fix] Return actual reserved words instead of string representations of them.
  70. 1.0.0 / 2016-06-09
  71. ==================
  72. - Initial stable release