From e048d0bbd2615d29ef068ccc2f5f1c22a7eb5c6c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 22:43:43 +0100 Subject: [PATCH] Version Packages (#225) Co-authored-by: github-actions[bot] --- .changeset/fuzzy-beers-sell.md | 5 ----- .changeset/nice-tips-attack.md | 5 ----- .changeset/seven-comics-fly.md | 5 ----- .changeset/silver-lobsters-know.md | 5 ----- .changeset/slow-wolves-notice.md | 5 ----- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- 7 files changed, 14 insertions(+), 26 deletions(-) delete mode 100644 .changeset/fuzzy-beers-sell.md delete mode 100644 .changeset/nice-tips-attack.md delete mode 100644 .changeset/seven-comics-fly.md delete mode 100644 .changeset/silver-lobsters-know.md delete mode 100644 .changeset/slow-wolves-notice.md diff --git a/.changeset/fuzzy-beers-sell.md b/.changeset/fuzzy-beers-sell.md deleted file mode 100644 index 68c88a3..0000000 --- a/.changeset/fuzzy-beers-sell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@tokens-studio/sd-transforms': minor ---- - -BREAKING: swap expandComposites 2nd argument and 3rd argument. 2nd argument is now TransformOptions and 3rd argument the filePath (string). This used to be vice versa and was inconsistent with the other parser functions. diff --git a/.changeset/nice-tips-attack.md b/.changeset/nice-tips-attack.md deleted file mode 100644 index 2487395..0000000 --- a/.changeset/nice-tips-attack.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@tokens-studio/sd-transforms': minor ---- - -Add and expose a parseTokens function to make it more developer friendly to add the sd-transforms parsing step to your own custom parser. diff --git a/.changeset/seven-comics-fly.md b/.changeset/seven-comics-fly.md deleted file mode 100644 index 53589d8..0000000 --- a/.changeset/seven-comics-fly.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@tokens-studio/sd-transforms': minor ---- - -BREAKNG: Use structuredClone instead of shallow Object.assign copy in parsers. Must use NodeJS v17 at minimum now, as opposed to v15.14.0 before this update. diff --git a/.changeset/silver-lobsters-know.md b/.changeset/silver-lobsters-know.md deleted file mode 100644 index 4a68745..0000000 --- a/.changeset/silver-lobsters-know.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@tokens-studio/sd-transforms': minor ---- - -Add the addAttributeCTI option to registerTransforms function, to automatically add `attribute/cti` predefined transform to the `tokens-studio` transformGroup. diff --git a/.changeset/slow-wolves-notice.md b/.changeset/slow-wolves-notice.md deleted file mode 100644 index 1a5e276..0000000 --- a/.changeset/slow-wolves-notice.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@tokens-studio/sd-transforms': patch ---- - -Refined CSS font name processing: Enhanced escapeApostrophes for accurate apostrophe handling in font names. Updated quoteWrapWhitespacedFont for smart quoting and escaping in multi-word fonts. Ensures better CSS font family compatibility. diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fc94e1..d108363 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # @tokens-studio/sd-transforms +## 0.12.0 + +### Minor Changes + +- 6f4b5ed: BREAKING: swap expandComposites 2nd argument and 3rd argument. 2nd argument is now TransformOptions and 3rd argument the filePath (string). This used to be vice versa and was inconsistent with the other parser functions. +- 6f4b5ed: Add and expose a parseTokens function to make it more developer friendly to add the sd-transforms parsing step to your own custom parser. +- f7e88b6: BREAKNG: Use structuredClone instead of shallow Object.assign copy in parsers. Must use NodeJS v17 at minimum now, as opposed to v15.14.0 before this update. +- 6f4b5ed: Add the addAttributeCTI option to registerTransforms function, to automatically add `attribute/cti` predefined transform to the `tokens-studio` transformGroup. + +### Patch Changes + +- 2307b9d: Refined CSS font name processing: Enhanced escapeApostrophes for accurate apostrophe handling in font names. Updated quoteWrapWhitespacedFont for smart quoting and escaping in multi-word fonts. Ensures better CSS font family compatibility. + ## 0.11.10 ### Patch Changes diff --git a/package.json b/package.json index 566fae3..4690474 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tokens-studio/sd-transforms", - "version": "0.11.10", + "version": "0.12.0", "description": "Custom transforms for Style-Dictionary, to work with Design Tokens that are exported from Tokens Studio", "license": "MIT", "author": "Joren Broekema ",