@veeqo/ui 13.13.1 → 13.13.2
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/README.md +14 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -188,3 +188,17 @@ The build script will automatically:
|
|
|
188
188
|
- Generate React components from SVGs
|
|
189
189
|
- Create index files for exports
|
|
190
190
|
- Apply consistent formatting and linting
|
|
191
|
+
|
|
192
|
+
## Figma Export Scripts
|
|
193
|
+
|
|
194
|
+
The UI library includes automated scripts to export assets from Figma files. For detailed information on configuring and extending these scripts, see [scripts/figma-export/README.md](scripts/figma-export/README.md).
|
|
195
|
+
|
|
196
|
+
### Quick Start
|
|
197
|
+
|
|
198
|
+
```bash
|
|
199
|
+
# Export design system icons
|
|
200
|
+
npm run figma:export
|
|
201
|
+
|
|
202
|
+
# Export integration marks
|
|
203
|
+
npm run figma:export-integrations
|
|
204
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veeqo/ui",
|
|
3
|
-
"version": "13.13.
|
|
3
|
+
"version": "13.13.2",
|
|
4
4
|
"description": "New optimised component library for Veeqo.",
|
|
5
5
|
"author": "Robert Wealthall",
|
|
6
6
|
"license": "ISC",
|
|
@@ -42,7 +42,11 @@
|
|
|
42
42
|
"tags:remove": "node scripts/remove-tag.cjs",
|
|
43
43
|
"tags:update": "git fetch --tags && git push --follow-tags",
|
|
44
44
|
"changelog:update": "npm run tags:update && auto-changelog -p && bash ./scripts/ai-changelog.sh && git add CHANGELOG.md NEW_CHANGELOG.md && (git diff --cached --quiet || git commit -m \"Update CHANGELOG and NEW_CHANGELOG\")",
|
|
45
|
-
"figma:export": "rimraf ./src/icons/design-system/imports && dotenv figma-export use-config"
|
|
45
|
+
"figma:export": "rimraf ./src/icons/design-system/imports && dotenv figma-export use-config scripts/figma-export/.figmaexportrc.icons.js ",
|
|
46
|
+
"figma:export-integrations": "rimraf ./imports/integrations && dotenv figma-export use-config scripts/figma-export/.figmaexportrc.integrations.js -- --type=all",
|
|
47
|
+
"figma:export-integrations:accounting": "rimraf ./imports/integrations/accounting && dotenv figma-export use-config scripts/figma-export/.figmaexportrc.integrations.js -- --type=accounting",
|
|
48
|
+
"figma:export-integrations:carriers": "rimraf ./imports/integrations/carriers && dotenv figma-export use-config scripts/figma-export/.figmaexportrc.integrations.js -- --type=carriers",
|
|
49
|
+
"figma:export-integrations:channels": "rimraf ./imports/integrations/channels && dotenv figma-export use-config scripts/figma-export/.figmaexportrc.integrations.js -- --type=channels"
|
|
46
50
|
},
|
|
47
51
|
"auto-changelog": {
|
|
48
52
|
"issueUrl": "https://sim.amazon.com/issues/{id}",
|