Skip to content

Commit

Permalink
test(workflows): build-tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverschuerch committed Jul 18, 2024
1 parent 4db0dcc commit cb58bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-tokens.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
const outputFiles = outputFileNames.map(fileName => ({
type: path.extname(fileName),
name: fileName,
content: fs.readFileSync(`packages/tokens/dist/${fileName}`, 'utf8')
content: fs.readFileSync(`packages/tokens/dist/${fileName}`, 'utf8').replaceAll('$', '$').replaceAll(' ', '  ')
})).sort((a, b) => (outputOrder.includes(a.name) ? outputOrder.indexOf(a.name) : 1000) - (outputOrder.includes(b.name) ? outputOrder.indexOf(b.name) : 1000))
return `# Token Build
Expand Down

0 comments on commit cb58bb1

Please sign in to comment.