MCPcopy Create free account
hub / github.com/6pac/SlickGrid / copySassFiles

Function copySassFiles

scripts/builds.mjs:169–176  ·  view source on GitHub ↗

Copy all SASS input files to the dist output folder

()

Source from the content-addressed store, hash-verified

167
168/** Copy all SASS input files to the dist output folder */
169function copySassFiles() {
170 copyfiles(
171 'src/styles/*.scss',
172 'dist/styles/sass',
173 { flat: true, stat: true },
174 () => console.log(`[${styleText('magenta', 'SASS')}] SASS files copied`)
175 );
176}
177
178/** build all SASS (.scss) files, from "src/styles", to CSS (.css) */
179export async function buildAllSassFiles() {

Callers 1

runProdBuildWithTypesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected