()
| 28 | |
| 29 | /** Run a full Production build and also build TS Types */ |
| 30 | export async function runProdBuildWithTypes() { |
| 31 | await executeFullBuild(); |
| 32 | await buildAllSassFiles(); |
| 33 | copySassFiles(); |
| 34 | await spawnStreaming('npm', ['run', 'build:types'], { cwd: projectRootPath }); |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Get a list of all JS/TS files (using glob pattern) |
no test coverage detected