Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.13 KB

CHANGELOG.md

File metadata and controls

28 lines (17 loc) · 1.13 KB

@udt/parser-utils

0.3.0

Minor Changes

  • fd5462f: BREAKING CHANGE: parseData() will now throw an InvalidStructureError if the top-level object in the input data is a design token.
  • fd5462f: BREAKING CHANGE: Specified minimum Node version of 18

0.2.0

Minor Changes

  • 7644f9a: BREAKING CHANGE: ParseGroupDataFn can no longer return an addChild function. Instead, you should now provide an addChildToGroup function in your parser config.
  • 7644f9a: BREAKING CHANGE: parseData() may now return undefined (happens if no parseGroupData function is set in the config).
  • 7644f9a: BREAKING CHANGE: extractProperties() now returns an object containing unextract properties and their values, instead of an array of unextracted property names.

0.1.0

Minor Changes

  • aa0e5ce: Initial release of @udt/parser-utils package.

Patch Changes

  • aa0e5ce: Added extractProperties() function for extracting specified properties and their values from an obejct.
  • aa0e5ce: Added parseData() function for parsing design token data
  • aa0e5ce: Added isPlainObject() function for checking if a value is a plain object.