You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

nightly.html 2.1 kB

2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. ---
  2. layout: guide
  3. scripts:
  4. - "/js/build/nightly.js"
  5. ---
  6. {% include vars.html %}
  7. {% capture nightly %}{% include_relative _installations/nightly.md %}{% endcapture %}
  8. {{nightly | markdownify}}
  9. <h2>{{i18n.nightly_latest_version}}</h2>
  10. <table>
  11. <thead>
  12. <tr>
  13. <th width="45%">{{i18n.install_table_name}}</th>
  14. <th width="25%">{{i18n.install_table_type}}</th>
  15. <th width="15%">{{i18n.install_table_size}}</th>
  16. <th width="15%">{{i18n.install_table_date}}</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. {% for type in site.data.nightly_types %}
  21. <tr id="row_{{type}}">
  22. <td>
  23. <a class="link" href="https://nightly.yarnpkg.com/latest.{{type}}">
  24. <span class="filename">{{i18n.loading}}</span>
  25. </a>
  26. </td>
  27. <td>{{i18n.install_file[type]}}</td>
  28. <td class="size"></td>
  29. <td class="date"></td>
  30. </tr>
  31. {% endfor %}
  32. </tbody>
  33. </table>
  34. <h2>{{i18n.nightly_older_versions}}</h2>
  35. <div class="tabs">
  36. <div id="older-versions" class="nav nav-tabs bg-faded text-center">
  37. <ul class="nav navbar-nav nav-inline">
  38. {% for type in site.data.nightly_types %}
  39. <a id="{{type}}-tab" class="nav-item nav-link" data-type="{{type}}" data-toggle="tab" href="#{{type}}">
  40. {{i18n.install_file[type]}}
  41. </a>
  42. {% endfor %}
  43. </ul>
  44. </div>
  45. <div class="tab-content">
  46. <div id="select-platform" class="tab-pane bg-faded active">
  47. <p class="text-center my-4 text-muted">
  48. {{i18n.nightly_select_build_type}}
  49. </p>
  50. </div>
  51. {% for type in site.data.nightly_types %}
  52. <div class="tab-pane" id="{{type}}">
  53. <table>
  54. <thead>
  55. <tr>
  56. <th width="60%">{{i18n.install_table_name}}</th>
  57. <th width="20%">{{i18n.install_table_size}}</th>
  58. <th width="20%">{{i18n.install_table_date}}</th>
  59. </tr>
  60. </thead>
  61. <tbody id="{{type}}-body">
  62. <tr>
  63. <td colspan="3">{{i18n.loading}}</td>
  64. </tr>
  65. </tbody>
  66. </table>
  67. </div>
  68. {% endfor %}
  69. </div>
  70. </div>

js yarn包管理组件依赖分析

Contributors (1)