Copy all SASS input files to the dist output folder
()
| 167 | |
| 168 | /** Copy all SASS input files to the dist output folder */ |
| 169 | function 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) */ |
| 179 | export async function buildAllSassFiles() { |
no outgoing calls
no test coverage detected