forked from gerard-figma/figma-variables-to-styledictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
50 lines (50 loc) · 1.01 KB
/
config.json
File metadata and controls
50 lines (50 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"source": [
"tokens/*.json"
],
"platforms": {
"js": {
"buildPath": "build/js/",
"transformGroup": "scss",
"files": [
{
"destination": "colorpalette.js",
"format": "javascript/es6"
}
]
},
"iOS": {
"buildPath": "build/ios/",
"prefix": "",
"transformGroup": "ios-swift",
"files": [
{
"destination": "colorpalette.swift",
"format": "ios-swift/any.swift",
"options": {
"outputReferences": true
},
"className": "colorPalette"
},
{
"destination": "enum.swift",
"format": "ios-swift/enum.swift"
}
]
},
"CSS": {
"buildPath": "build/css//",
"prefix": "",
"transformGroup": "css",
"files": [
{
"destination": "variables.css",
"format": "css/variables",
"options": {
"outputReferences": true
}
}
]
}
}
}