Skip to content

Commit 8a8d51b

Browse files
committed
Fixed paths in generateCssHelpers script
Required after the `eslint` bump in e853a0a
1 parent e853a0a commit 8a8d51b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/tokens/scripts/build-parts/generateCssHelpers.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const PREFIX = 'hds';
1616

1717
export async function generateCssHelpers(dictionary: Dictionary, config: Platform ): Promise<void> {
1818

19-
fs.ensureDir(`${config.buildPath}/helpers/`);
19+
fs.ensureDir(`${config.buildPath}helpers/`);
2020

2121
// tried to use style-dictionary/lib/common/formatHelpers/fileHeader.js but didn't work
2222
const header = `/**\n * Do not edit directly\n * Generated on ${new Date().toUTCString()}\n */\n`;
@@ -31,24 +31,24 @@ export async function generateCssHelpers(dictionary: Dictionary, config: Platfor
3131
// so it's simpler to process all the tokens (flat structure) and filter them
3232
const helpers = generateColorHelpers(dictionary.allTokens, outputCssVars);
3333
const content = `${header}\n${helpers.join('\n')}\n`;
34-
await fs.writeFile(`${config.buildPath}/helpers/color.css`, content);
34+
await fs.writeFile(`${config.buildPath}helpers/color.css`, content);
3535
}
3636

3737
if (dictionary.tokens.typography) {
3838
const helpers = generateTypographyHelpers(dictionary.tokens.typography, outputCssVars);
3939
const content = `${header}\n${helpers.join('\n')}\n`;
40-
await fs.writeFile(`${config.buildPath}/helpers/typography.css`, content);
40+
await fs.writeFile(`${config.buildPath}helpers/typography.css`, content);
4141
}
4242

4343
if (dictionary.tokens.elevation) {
4444
const helpers = generateElevationHelpers(dictionary.tokens.elevation, dictionary.tokens.surface, outputCssVars);
4545
const content = `${header}\n${helpers.join('\n')}\n`;
46-
await fs.writeFile(`${config.buildPath}/helpers/elevation.css`, content);
46+
await fs.writeFile(`${config.buildPath}helpers/elevation.css`, content);
4747
}
4848

4949
if (dictionary.tokens['focus-ring']) {
5050
const helpers = generateFocusRingHelpers(dictionary.tokens['focus-ring'], outputCssVars);
5151
const content = `${header}\n${helpers.join('\n')}\n`;
52-
await fs.writeFile(`${config.buildPath}/helpers/focus-ring.css`, content);
52+
await fs.writeFile(`${config.buildPath}helpers/focus-ring.css`, content);
5353
}
5454
}

0 commit comments

Comments
 (0)