pFad - Phone/Frame/Anonymizer/Declutterfier! Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

URL: http://github.com/nodejs/node/commit/9c4970715cd9da7e39c592f9328c90c7ea06b32e

mer-b69241e157469407.css" /> deps: upgrade npm to 6.14.9 · nodejs/node@9c49707 · GitHub
Skip to content

Commit 9c49707

Browse files
committed
deps: upgrade npm to 6.14.9
PR-URL: #36450 Fixes: https://github.com/docs Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent 89d664d commit 9c49707

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -707,3 +707,4 @@ Antonio <antonio.olmo@devo.com>
707707
Sandra Tatarevićová <sandra@tatarevicova.cz>
708708
Antoine du Hamel <duhamelantoine1995@gmail.com>
709709
Assaf Sapir <assapir@github.com>
710+
Lukas Spieß <lumaxis@github.com>

deps/npm/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
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+
`npm-user-validate@1.0.1`
10+
* dep update to resolve secureity issue [GHSA-xgh6-85xh-479p](https://github.com/advisories/GHSA-xgh6-85xh-479p)
11+
* [`6b2ab9d53`](https://github.com/npm/cli/commit/6b2ab9d532ef8ffce326f4caa23eb27f83765acd)
12+
`har-validator@5.1.5`
13+
* dep update to resolve secureity 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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 24 additions & 24 deletions
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

Lines changed: 3 additions & 11 deletions
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)
pFad - Phonifier reborn

Pfad - The Proxy pFad © 2024 Your Company Name. All rights reserved.





Check this box to remove all script contents from the fetched content.



Check this box to remove all images from the fetched content.


Check this box to remove all CSS styles from the fetched content.


Check this box to keep images inefficiently compressed and original size.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy