Skip to content

Commit 9cfaed3

Browse files
authored
[Project Solar / Phase 1 / Cherry-pick] Added missing await to async function in generateCssHelpers.ts (#3560)
1 parent 7cfc65f commit 9cfaed3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const PREFIX = 'hds';
1717

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

20-
fs.ensureDir(`${config.buildPath}helpers/`);
20+
await fs.ensureDir(`${config.buildPath}helpers/`);
2121

2222
const header = await fileHeader({});
2323

0 commit comments

Comments
 (0)