Skip to content

Commit 690eb55

Browse files
committed
docs(guides): move the comparison guide out of the guides section
This isn't really as much of an instructional as it is just information about different bundling and build systems.
1 parent 310b42e commit 690eb55

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

components/footer/footer.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ export default (props) => {
1111
<footer className="footer">
1212
<Container className="footer__inner">
1313
<section className="footer__left">
14-
<Link className="footer__link" to="/guides/getting-started">Get Started</Link>
14+
<Link className="footer__link" to="/guides/getting-started">Getting Started</Link>
1515
<Link className="footer__link" to="/organization">Organization</Link>
1616
<Link className="footer__link" to="/support">Support</Link>
17-
<Link className="footer__link" to="/guides/comparison">Comparison</Link>
17+
<Link className="footer__link" to="/comparison">Comparison</Link>
1818
</section>
1919

2020
<section className="footer__middle">
File renamed without changes.

content/guides/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ contributors:
1313
- TheDutchCoder
1414
---
1515

16-
As you may already know, webpack is used to compile JavaScript modules. Once [installed](/guides/installation), you can interface with webpack either from its [CLI](/api/cli) or [API](/api/node). If you're still new to webpack, please read through the [core concepts](/concepts) and [this comparison](/guides/comparison) to learn why you might use it over the other tools that are out in the community.
16+
As you may already know, webpack is used to compile JavaScript modules. Once [installed](/guides/installation), you can interface with webpack either from its [CLI](/api/cli) or [API](/api/node). If you're still new to webpack, please read through the [core concepts](/concepts) and [this comparison](/comparison) to learn why you might use it over the other tools that are out in the community.
1717

1818

1919
## Basic Setup
@@ -109,7 +109,7 @@ __src/index.js__
109109
+
110110
function component() {
111111
var element = document.createElement('div');
112-
112+
113113
- // Lodash, currently included via a script, is required for this line to work
114114
+ // Lodash, now imported by this script
115115
element.innerHTML = _.join(['Hello', 'webpack'], ' ');

0 commit comments

Comments
 (0)