tokens-bruecke 2.14.5 → 2.16.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -53,7 +53,10 @@ jobs:
53
53
  run: |
54
54
  git config user.name "github-actions[bot]"
55
55
  git config user.email "github-actions[bot]@users.noreply.github.com"
56
+ git fetch origin main
57
+ git checkout main
58
+ git pull origin main
56
59
  npx --yes conventional-changelog-cli -p conventionalcommits -i CHANGELOG.md -s -r 1
57
60
  git add CHANGELOG.md
58
61
  git diff --staged --quiet || git commit -m "docs: update CHANGELOG for ${{ github.ref_name }}"
59
- git push origin HEAD:main
62
+ git push origin main
package/CHANGELOG.md CHANGED
@@ -1,3 +1,4 @@
1
+ ## [2.16.1](https://github.com/tokens-bruecke/figma-plugin/compare/v16.0.1...v2.16.1) (2026-05-11)
1
2
  # Changelog
2
3
 
3
4
  ## [2.11.1](https://github.com/tokens-bruecke/figma-plugin/compare/v2.11.0...v2.11.1) (2026-03-28)
package/README.md CHANGED
@@ -43,6 +43,7 @@ The plugin converts Figma variables into design-tokens JSON that are compatible
43
43
  - [Custom server](#custom-server)
44
44
  - [Show output](#show-output)
45
45
  - [Plugin window height](#plugin-window-height)
46
+ - [Multiple profiles](#multiple-profiles)
46
47
  - [Config autosaving](#config-autosaving)
47
48
  - [Styles support](#styles-support)
48
49
  - [Typography](#typography)
@@ -170,7 +171,7 @@ Is `off` by default. When enabled, opacity values will be exported as percentage
170
171
 
171
172
  ### Use DTCG keys format
172
173
 
173
- Is `off` by default. Currently many design tokens tools doesn't support [DTCG keys format](https://design-tokens.github.io/community-group/format/#character-restrictions). All DTCG keys are prefixed with `$` symbol.
174
+ Is `on` by default. All DTCG keys are prefixed with `$` symbol. Currently many design tokens tools support [DTCG keys format](https://design-tokens.github.io/community-group/format/#character-restrictions).
174
175
 
175
176
  ```json
176
177
  // Without DTCG keys format
@@ -364,7 +365,7 @@ You can use a JSON configuration file to specify the export options for the CLI.
364
365
  "colors": { "isIncluded": false, "customName": "colors" }
365
366
  },
366
367
  "includeScopes": true,
367
- "useDTCGKeys": false,
368
+ "useDTCGKeys": true,
368
369
  "includeValueStringKeyToAlias": true,
369
370
  "includeFigmaMetaData": false, // Include Figma metadata like styleId, variableId, etc.
370
371
  "usePercentageOpacity": false, // Export opacity as percentage (10%) instead of decimal (0.1)
@@ -453,6 +454,26 @@ The plugin window auto-fits the height of its content, but you can adjust it man
453
454
 
454
455
  ---
455
456
 
457
+ ## Multiple profiles
458
+
459
+ The plugin supports multiple named profiles. Each profile stores its own complete set of export settings and server configurations, so you can switch between different setups without reconfiguring every time.
460
+
461
+ **Profile management controls** appear in the header of the settings view:
462
+
463
+ - **Profile dropdown** — shows the currently active profile. Click to switch to another profile.
464
+ - **`+` button** — creates a new profile. Enter a name and click **Create**. The new profile starts with default settings.
465
+ - **`⋮` button** — opens the active profile's detail view where you can rename or delete it.
466
+
467
+ > [!NOTE]
468
+ > Each profile's settings are saved independently. Switching profiles immediately applies that profile's export options and server credentials.
469
+
470
+ > [!WARNING]
471
+ > The last remaining profile cannot be deleted.
472
+
473
+ ![fig.14](readme-assets/fig14.webp)
474
+
475
+ ---
476
+
456
477
  ## Config autosaving
457
478
 
458
479
  The plugin saves the config automatically. So, you don't need to set it up every time you run the plugin.