Skip to content

v0.3.3

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Sep 20:41
· 4 commits to main since this release
fd1e6c9

Patch Changes

  • 2c9be59: Allow tokensets to be the same name as the upper most keys in the tokens object, e.g.:

    {
      "core": {
        "tokenset": "core",
        "color": {
          "value": "#ff0000",
          "type": "color"
        }
      }
    }

    will become

    {
      "core": {
        "core": {
          "color": {
            "value": "#ff0000",
            "type": "color"
          }
        }
      }
    }

    so that Figma Tokens plugin picks it up properly.