Skip to content

Commit 76ea9c5

Browse files
committed
deps: upgrade npm to 6.14.9
PR-URL: #36450 Fixes: https://github.com/docs Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Daijiro Wachi <[email protected]> Reviewed-By: Beth Griggs <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent 637d085 commit 76ea9c5

File tree

398 files changed

+11692
-6182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

398 files changed

+11692
-6182
lines changed

deps/npm/AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -707,3 +707,4 @@ Antonio <[email protected]>
707707
Sandra Tatarevićová <[email protected]>
708708
Antoine du Hamel <[email protected]>
709709
Assaf Sapir <[email protected]>
710+
Lukas Spieß <[email protected]>

deps/npm/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 6.14.9 (2020-11-20)
2+
3+
### BUG FIXES
4+
* [`4a91e48aa`](https://github.com/npm/cli/commit/4a91e48aa92be5b2739ebcdd8a9a841ff5cb6817)
5+
fix: docs generation breaking builds
6+
7+
### DEPENDDENCIES
8+
* [`ab80a7cf0`](https://github.com/npm/cli/commit/ab80a7cf092d52f4b055cc6d03c38b6115c4b582)
9+
10+
* dep update to resolve security issue [GHSA-xgh6-85xh-479p](https://github.com/advisories/GHSA-xgh6-85xh-479p)
11+
* [`6b2ab9d53`](https://github.com/npm/cli/commit/6b2ab9d532ef8ffce326f4caa23eb27f83765acd)
12+
13+
* dep update to resolve security issue [SNYK-JS-AJV-584908](https://snyk.io/vuln/SNYK-JS-AJV-584908)
14+
115
## 6.14.8 (2020-08-17)
216

317
### BUG FIXES

deps/npm/docs/content/cli-commands/npm-unpublish.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Even if a package version is unpublished, that specific name and
3838
version combination can never be reused. In order to publish the
3939
package again, a new version number must be used. If you unpublish the entire package, you may not publish any new versions of that package until 24 hours have passed.
4040

41-
To learn more about how unpublish is treated on the npm registry, see our <a href="https://www.npmjs.com/policies/unpublish" target="_blank" rel="noopener noreferrer"> unpublish policies</a>.
41+
To learn more about how unpublish is treated on the npm registry, see our <a href="https://www.npmjs.com/policies/unpublish" target="_blank" rel="noopener noreferrer"> unpublish policies</a>.
4242

4343

4444
### See Also

deps/npm/docs/content/configuring-npm/package-json.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ Conversely, some files are always ignored:
278278
* `node_modules`
279279
* `config.gypi`
280280
* `package-lock.json` (use shrinkwrap instead)
281-
* All files containing a `*` character (incompatible with Windows)
281+
* All files containing a `*` character (incompatible with Windows)
282282

283283
### main
284284

deps/npm/docs/content/using-npm/scripts.md

+24-24
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,14 @@ suites, then those executables will be added to the `PATH` for
145145
executing the scripts. So, if your package.json has this:
146146

147147
```json
148-
{
149-
"name" : "foo",
150-
"dependencies" : {
151-
"bar" : "0.1.x"
152-
},
153-
"scripts": {
154-
"start" : "bar ./test"
155-
}
148+
{
149+
"name" : "foo",
150+
"dependencies" : {
151+
"bar" : "0.1.x"
152+
},
153+
"scripts": {
154+
"start" : "bar ./test"
155+
}
156156
}
157157
```
158158

@@ -182,14 +182,14 @@ there is a config param of `<name>[@<version>]:<key>`. For example,
182182
if the package.json has this:
183183

184184
```json
185-
{
186-
"name" : "foo",
187-
"config" : {
188-
"port" : "8080"
189-
},
190-
"scripts" : {
191-
"start" : "node server.js"
192-
}
185+
{
186+
"name" : "foo",
187+
"config" : {
188+
"port" : "8080"
189+
},
190+
"scripts" : {
191+
"start" : "node server.js"
192+
}
193193
}
194194
```
195195

@@ -225,10 +225,10 @@ process.env.npm_package_scripts_install === "foo.js"
225225
For example, if your package.json contains this:
226226

227227
```json
228-
{
229-
"scripts" : {
230-
"install" : "scripts/install.js",
231-
"postinstall" : "scripts/install.js",
228+
{
229+
"scripts" : {
230+
"install" : "scripts/install.js",
231+
"postinstall" : "scripts/install.js",
232232
"uninstall" : "scripts/uninstall.js"
233233
}
234234
}
@@ -245,10 +245,10 @@ If you want to run a make command, you can do so. This works just
245245
fine:
246246

247247
```json
248-
{
249-
"scripts" : {
250-
"preinstall" : "./configure",
251-
"install" : "make && make install",
248+
{
249+
"scripts" : {
250+
"preinstall" : "./configure",
251+
"install" : "make && make install",
252252
"test" : "make test"
253253
}
254254
}

deps/npm/docs/gatsby-config.js

+3-11
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,11 @@ const OPTS = {
3535
}
3636
},
3737
{
38-
resolve: 'gatsby-plugin-prefetch-google-fonts',
38+
resolve: 'gatsby-plugin-google-fonts',
3939
options: {
4040
fonts: [
41-
{
42-
family: 'Poppins',
43-
subsets: ['latin'],
44-
variants: ['300', '400', '500']
45-
},
46-
{
47-
family: 'Inconsolata',
48-
subsets: ['latin'],
49-
variants: ['400', '700']
50-
}
41+
'Poppins',
42+
'Inconsolata'
5143
]
5244
}
5345
},

0 commit comments

Comments
 (0)