tokens-bruecke 2.14.5 → 2.16.3
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.
- package/.github/workflows/release.yml +4 -1
- package/CHANGELOG.md +1 -0
- package/README.md +21 -0
- package/bin/cli.js +1 -1
- package/global.d.ts +12 -0
- package/package.json +2 -2
- package/readme-assets/fig14.webp +0 -0
|
@@ -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
|
|
62
|
+
git push origin main
|
package/CHANGELOG.md
CHANGED
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)
|
|
@@ -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
|
+

|
|
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.
|