Skip to content

Commit

Permalink
deps: upgrade npm to 6.14.9
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
MylesBorins authored and BethGriggs committed Dec 15, 2020
1 parent 47bd445 commit 6cea315
Show file tree
Hide file tree
Showing 398 changed files with 11,692 additions and 6,182 deletions.
1 change: 1 addition & 0 deletions deps/npm/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -707,3 +707,4 @@ Antonio <[email protected]>
Sandra Tatarevićová <[email protected]>
Antoine du Hamel <[email protected]>
Assaf Sapir <[email protected]>
Lukas Spieß <[email protected]>
14 changes: 14 additions & 0 deletions deps/npm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 6.14.9 (2020-11-20)

### BUG FIXES
* [`4a91e48aa`](https://github.com/npm/cli/commit/4a91e48aa92be5b2739ebcdd8a9a841ff5cb6817)
fix: docs generation breaking builds

### DEPENDDENCIES
* [`ab80a7cf0`](https://github.com/npm/cli/commit/ab80a7cf092d52f4b055cc6d03c38b6115c4b582)
`[email protected]`
* dep update to resolve security issue [GHSA-xgh6-85xh-479p](https://github.com/advisories/GHSA-xgh6-85xh-479p)
* [`6b2ab9d53`](https://github.com/npm/cli/commit/6b2ab9d532ef8ffce326f4caa23eb27f83765acd)
`[email protected]`
* dep update to resolve security issue [SNYK-JS-AJV-584908](https://snyk.io/vuln/SNYK-JS-AJV-584908)

## 6.14.8 (2020-08-17)

### BUG FIXES
Expand Down
2 changes: 1 addition & 1 deletion deps/npm/docs/content/cli-commands/npm-unpublish.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Even if a package version is unpublished, that specific name and
version combination can never be reused. In order to publish the
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.

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>.
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>.


### See Also
Expand Down
2 changes: 1 addition & 1 deletion deps/npm/docs/content/configuring-npm/package-json.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ Conversely, some files are always ignored:
* `node_modules`
* `config.gypi`
* `package-lock.json` (use shrinkwrap instead)
* All files containing a `*` character (incompatible with Windows)
* All files containing a `*` character (incompatible with Windows)

### main

Expand Down
48 changes: 24 additions & 24 deletions deps/npm/docs/content/using-npm/scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,14 @@ suites, then those executables will be added to the `PATH` for
executing the scripts. So, if your package.json has this:

```json
{
"name" : "foo",
"dependencies" : {
"bar" : "0.1.x"
},
"scripts": {
"start" : "bar ./test"
}
{
"name" : "foo",
"dependencies" : {
"bar" : "0.1.x"
},
"scripts": {
"start" : "bar ./test"
}
}
```

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

```json
{
"name" : "foo",
"config" : {
"port" : "8080"
},
"scripts" : {
"start" : "node server.js"
}
{
"name" : "foo",
"config" : {
"port" : "8080"
},
"scripts" : {
"start" : "node server.js"
}
}
```

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

```json
{
"scripts" : {
"install" : "scripts/install.js",
"postinstall" : "scripts/install.js",
{
"scripts" : {
"install" : "scripts/install.js",
"postinstall" : "scripts/install.js",
"uninstall" : "scripts/uninstall.js"
}
}
Expand All @@ -245,10 +245,10 @@ If you want to run a make command, you can do so. This works just
fine:

```json
{
"scripts" : {
"preinstall" : "./configure",
"install" : "make && make install",
{
"scripts" : {
"preinstall" : "./configure",
"install" : "make && make install",
"test" : "make test"
}
}
Expand Down
14 changes: 3 additions & 11 deletions deps/npm/docs/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,11 @@ const OPTS = {
}
},
{
resolve: 'gatsby-plugin-prefetch-google-fonts',
resolve: 'gatsby-plugin-google-fonts',
options: {
fonts: [
{
family: 'Poppins',
subsets: ['latin'],
variants: ['300', '400', '500']
},
{
family: 'Inconsolata',
subsets: ['latin'],
variants: ['400', '700']
}
'Poppins',
'Inconsolata'
]
}
},
Expand Down
Loading

0 comments on commit 6cea315

Please sign in to comment.