* build pre check
()
| 110 | * build pre check |
| 111 | */ |
| 112 | function preCheck() { |
| 113 | const { status, missFile } = checkFileExist([ |
| 114 | pathConfigs.appDir, |
| 115 | pathConfigs.appSrcDir, |
| 116 | pathConfigs.appMainJs, |
| 117 | pathConfigs.appHtml, |
| 118 | pathConfigs.staticAssetsDir, |
| 119 | ]) |
| 120 | if (!status) exitProcess(missFile.join(',') + "not find") |
| 121 | } |
| 122 | |
| 123 | |
| 124 | /** |
no test coverage detected