Helper function to render a Sass file.
(inputFile)
| 159 | |
| 160 | /** Helper function to render a Sass file. */ |
| 161 | function renderSassFile(inputFile) { |
| 162 | return sass.compile(inputFile, { |
| 163 | loadPaths: [nodeModulesDir, projectDir], |
| 164 | importers: [localPackageSassImporter], |
| 165 | }); |
| 166 | } |
| 167 | |
| 168 | /** Plugin that links node modules using the Angular compiler CLI. */ |
| 169 | function createLinkerEsbuildPlugin() { |