Skip to content

Commit

Permalink
ci: enable verbose StyleDictionary warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
druhill committed Oct 8, 2024
1 parent c66c2f6 commit d18c89b
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,14 @@ const getGlobalConfig = ({contextName, sizeName}: IConfig) => {
...getFiles({componentName: 'global', format: 'ios/macros', subType, suffix: 'h'})
]
}
}
},
log: {
warnings: 'warn',
verbosity: 'verbose',
errors: {
brokenReferences: 'throw',
},
},
}
}

Expand Down Expand Up @@ -208,7 +215,14 @@ const getModeConfig = ({contextName, modeName, sizeName}: IConfig) => {
...getMode({modeName, format: 'ios/macros', subType, suffix: 'h'})
]
}
}
},
log: {
warnings: 'warn',
verbosity: 'verbose',
errors: {
brokenReferences: 'throw',
},
},
}
}

Expand Down

0 comments on commit d18c89b

Please sign in to comment.