* Perform the prerequisite steps before starting the minified build. * Used by `amp` and `amp dist`. * * @param {!Object} options * @return {Promise }
(options)
| 89 | * @return {Promise<void>} |
| 90 | */ |
| 91 | async function runPreDistSteps(options) { |
| 92 | await prebuild(); |
| 93 | await compileCss(options); |
| 94 | await copyCss(); |
| 95 | await compileJison(); |
| 96 | await copyParsers(); |
| 97 | await bootstrapThirdPartyFrames(options); |
| 98 | await buildStoryLocalization(options); |
| 99 | displayLifecycleDebugging(); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Minified build. Entry point for `amp dist`. |
no test coverage detected