| 139 | } |
| 140 | |
| 141 | interface WebpackTaskOptions { |
| 142 | entry: webpack.Configuration['entry']; |
| 143 | devtool?: webpack.Configuration['devtool']; |
| 144 | disableMinification?: boolean; |
| 145 | afterBuild?: () => Promise<void>; |
| 146 | plugins?: webpack.Configuration['plugins']; |
| 147 | } |
| 148 | |
| 149 | async function webpackTask({ |
| 150 | entry, |
nothing calls this directly
no outgoing calls
no test coverage detected