talatuyarer opened a new pull request, #14267: URL: https://github.com/apache/iceberg/pull/14267
Every time we build the docs, the `mkdocs-monorepo-plugin` rebuilds all 14+ versioned documentation of projects even though these old versions never change. This makes iterative development very slow. I created A development mode that only builds nightly and latest versions to make builds are fast. The production mode still builds all versions which means slow :) Based on my machine performance it makes 5x more faster. `--dirty` flag makes even faster iterative rebuilds #### How to use ***Dev Mod*** ```shell cd site make serve-dev # Only builds nightly + latest ``` ***Full production mode*** ```shell cd site make serve # Builds all 14 versions (use before PRs) ``` Closes #14124 cc @kevinjqliu @RussellSpitzer -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
