Skip to content

Commit

Permalink
add additional scss output (#2201)
Browse files Browse the repository at this point in the history
  • Loading branch information
levimichael authored Mar 6, 2024
1 parent df60b8e commit fe3ac9e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/docsearch-css/build-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@ async function buildStyle() {
].join('\n'),
() => true
);

fs.writeFile(
'dist/style.scss',
[
getBundleBanner(pkg),
[variablesOutput.css, buttonOutput.css, modalOutput.css].join(''),
].join('\n'),
() => true
);
}

buildStyle();

0 comments on commit fe3ac9e

Please sign in to comment.