mirror of
https://github.com/elastic/kibana.git
synced 2025-04-21 16:29:04 -04:00
* chore(NA): full WORKSPACE.bazel logic plus manage yarn dependencies with Bazel * chore(NA): update BUILD.bazel files comments on root and packages * chore(NA): add workspace file with useful data * chore(NA): install deps through bazel * chore(NA): update workspace file * chore(NA): update into last rules nodejs * chore(NA): ensure bazel always run yarn install * chore(NA): support offline mode * chore(NA): remove elastic-datemath * chore(NA): restore bazel 4.0.0 * chore(NA): update kbn pm dist * chore(NA): introduce force-install command * docs(NA): update docs with new yarn kbn bootstrap flags * chore(NA): use path.resolve on kbn bootstrap integrity check verification * chore(NA): update .yarnrc Co-authored-by: Tyler Smalley <tylersmalley@me.com> * chore(NA): change cli argument typo * chore(NA): fix spacing on kbn pm cli Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Tyler Smalley <tylersmalley@me.com> Co-authored-by: Tiago Costa <tiagoffcc@hotmail.com> Co-authored-by: Tyler Smalley <tylersmalley@me.com>
11 lines
428 B
Text
11 lines
428 B
Text
# Configure an offline yarn mirror in the data folder
|
|
yarn-offline-mirror ".yarn-local-mirror"
|
|
|
|
# Always look into the cache first before fetching online
|
|
--install.prefer-offline true
|
|
|
|
# Disable interactive and progress logs as yarn install is now
|
|
# managed by Bazel and we are piping the logs from the underlying
|
|
# process running bazel into the parent one running kbn
|
|
--install.non-interactive true
|
|
--install.no-progress true
|