Add News to Links
This commit is contained in:
Родитель
5639f923db
Коммит
2a02c926f8
|
@ -35,6 +35,7 @@
|
|||
</a>
|
||||
<div>
|
||||
<a class="btn" href="{{ site.baseurl }}/about">About</a>
|
||||
<a class="btn" href="{{ site.baseurl }}/news">News</a>
|
||||
<a class="btn" href="https://microsoft.github.io/web-build-tools/api/rush-lib.html">Docs</a>
|
||||
<a class="btn" href="https://gitter.im/web-build-tools/web-build-tools">Gitter</a>
|
||||
<a class="btn btn-primary" href="https://github.com/Microsoft/web-build-tools/wiki/Rush-~-Setting-up-your-repo">Get Started</a>
|
||||
|
@ -53,6 +54,9 @@
|
|||
<li class="list-inline-item">
|
||||
<a href="{{ site.baseurl }}/about">About</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a href="{{ site.baseurl }}/news">News</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a href="https://microsoft.github.io/web-build-tools/api/rush-lib.html">Docs</a>
|
||||
</li>
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
---
|
||||
layout: default
|
||||
layout: page
|
||||
---
|
||||
|
||||
<article class="post">
|
||||
<h1>{{ page.title }}</h1>
|
||||
|
||||
<div class="date">
|
||||
<strong><i>
|
||||
Published {{ page.date | date: "%B %e, %Y" }}
|
||||
by <a href="{{ page.authorLink }}" >{{ page.author }}</a>
|
||||
</i></strong>
|
||||
</div>
|
||||
|
||||
<div class="entry">
|
||||
{{ content }}
|
||||
</div>
|
||||
|
||||
<div class="date">
|
||||
Written on {{ page.date | date: "%B %e, %Y" }}
|
||||
</div>
|
||||
|
||||
{% include disqus.html %}
|
||||
</article>
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
---
|
||||
layout: post
|
||||
title: Rush now has preliminary support for PNPM
|
||||
date: 2018-01-08 17:10:12 -8
|
||||
author: Nick Pape
|
||||
authorLink: https://github.com/nickpape-msft
|
||||
---
|
||||
|
||||
We have added support in Rush for the [PNPM package manager](https://github.com/pnpm/pnpm). PNPM has several advantages over NPM, including performance, disk efficiency, rigor and simplicity. The primary idea behind PNPM is to install packages a single time, and construct your node_modules folder using only symlinks. By comparison, NPM imposes a tree of physical folders that often requires excessive duplication of the exact same contents.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: default
|
||||
layout: page
|
||||
---
|
||||
|
||||
<div class="posts">
|
||||
|
@ -7,6 +7,7 @@ layout: default
|
|||
<article class="post">
|
||||
|
||||
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
|
||||
<i>{{ post.date | date: "%B %e, %Y" }}</i>
|
||||
|
||||
<div class="entry">
|
||||
{{ post.excerpt }}
|
Загрузка…
Ссылка в новой задаче