* Perform the prerequisite steps before starting the unminified build. * Used by `amp` and `amp build`. * * @param {!Object} options * @return {Promise}
(options)
| 28 | * @return {Promise} |
| 29 | */ |
| 30 | async function runPreBuildSteps(options) { |
| 31 | return Promise.all([ |
| 32 | buildStoryLocalization(options), |
| 33 | compileCss(options), |
| 34 | bootstrapThirdPartyFrames(options), |
| 35 | ]); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Unminified build. Entry point for `amp build`. |
no test coverage detected