Skip to content

Commit 8c8d85a

Browse files
committed
fix: casing on npm
1 parent 4b0ca9a commit 8c8d85a

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/guide/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ For prototyping or learning purposes, you can use the latest version with:
3636

3737
For production, we recommend linking to a specific version number and build to avoid unexpected breakage from newer versions.
3838

39-
## NPM
39+
## npm
4040

41-
NPM is the recommended installation method when building large scale applications with Vue. It pairs nicely with module bundlers such as [Webpack](https://webpack.js.org/) or [Rollup](https://rollupjs.org/). Vue also provides accompanying tools for authoring [Single File Components](../guide/single-file-component.html).
41+
npm is the recommended installation method when building large scale applications with Vue. It pairs nicely with module bundlers such as [Webpack](https://webpack.js.org/) or [Rollup](https://rollupjs.org/). Vue also provides accompanying tools for authoring [Single File Components](../guide/single-file-component.html).
4242

4343
```bash
4444
# latest stable

src/guide/migration/introduction.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Introduction
22

3-
::: info
4-
New to Vue.js? Check out our [Essentials Guide](/guide/introduction.html) to get started.
3+
::: info
4+
New to Vue.js? Check out our [Essentials Guide](/guide/introduction.html) to get started.
55
:::
66

7-
This guide is primarily for users with prior Vue 2 experience who want to learn about the new features and changes in Vue 3. **This is not something you have to read from top to bottom before trying out Vue 3.** While it looks like a lot has changed, a lot of what you know and love about Vue is still the same; but we wanted to be as thorough as possible and provide detailed explanations and examples for every documented change.
7+
This guide is primarily for users with prior Vue 2 experience who want to learn about the new features and changes in Vue 3. **This is not something you have to read from top to bottom before trying out Vue 3.** While it looks like a lot has changed, a lot of what you know and love about Vue is still the same; but we wanted to be as thorough as possible and provide detailed explanations and examples for every documented change.
88

99
- [Quickstart](#quickstart)
1010
- [Notable New Features](#notable-new-features)
@@ -111,7 +111,7 @@ The following consists a list of breaking changes from 2.x:
111111

112112
## Supporting Libraries
113113

114-
All of our official libraries and tools now support Vue 3, but most of them are still in beta status and distributed under the `next` dist tag on NPM. **We are planning to stabilize and switch all projects to use the `latest` dist tag by end of 2020.**
114+
All of our official libraries and tools now support Vue 3, but most of them are still in beta status and distributed under the `next` dist tag on npm. **We are planning to stabilize and switch all projects to use the `latest` dist tag by end of 2020.**
115115

116116
### Vue CLI
117117

@@ -155,7 +155,7 @@ It is recommended to use [VSCode](https://code.visualstudio.com/) with our offic
155155

156156
### Other Projects
157157

158-
| Project | NPM | Repo |
158+
| Project | npm | Repo |
159159
| --------------------- | ----------------------------- | -------------------- |
160160
| @vue/babel-plugin-jsx | [![rc][jsx-badge]][jsx-npm] | [[GitHub][jsx-code]] |
161161
| eslint-plugin-vue | [![ga][epv-badge]][epv-npm] | [[GitHub][epv-code]] |

src/guide/single-file-component.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ One important thing to note is that **separation of concerns is not equal to sep
3535

3636
Even if you don't like the idea of Single-File Components, you can still leverage its hot-reloading and pre-compilation features by separating your JavaScript and CSS into separate files:
3737

38-
``` html
38+
```html
3939
<!-- my-component.vue -->
4040
<template>
4141
<div>This will be pre-compiled</div>
@@ -54,7 +54,7 @@ If you want to dive right in and start playing with single-file components, chec
5454

5555
With `.vue` components, we're entering the realm of advanced JavaScript applications. That means learning to use a few additional tools if you haven't already:
5656

57-
- **Node Package Manager (NPM)**: Read the [Getting Started guide](https://docs.npmjs.com/packages-and-modules/getting-packages-from-the-registry) section about how to get packages from the registry.
57+
- **Node Package Manager (npm)**: Read the [Getting Started guide](https://docs.npmjs.com/packages-and-modules/getting-packages-from-the-registry) section about how to get packages from the registry.
5858

5959
- **Modern JavaScript with ES2015/16**: Read through Babel's [Learn ES2015 guide](https://babeljs.io/docs/en/learn). You don't have to memorize every feature right now, but keep this page as a reference you can come back to.
6060

0 commit comments

Comments
 (0)