Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 55adee0

Browse filesBrowse files
lpincatargos
authored andcommitted
deps: upgrade npm to 7.0.7
PR-URL: #35908 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Guy Bedford <guybedford@gmail.com>
1 parent 5cb77f2 commit 55adee0
Copy full SHA for 55adee0

File tree

Expand file treeCollapse file tree

531 files changed

+24688
-75085
lines changed
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

531 files changed

+24688
-75085
lines changed
Open diff view settings
Collapse file

‎deps/npm/.eslintrc.json‎

Copy file name to clipboardExpand all lines: deps/npm/.eslintrc.json
+20-28Lines changed: 20 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
22
"parserOptions": {
3-
"ecmaVersion": 2020,
4-
"ecmaFeatures": {
5-
"jsx": true
6-
},
7-
"sourceType": "module"
3+
"ecmaVersion": 2018,
4+
"ecmaFeatures": {},
5+
"sourceType": "script"
86
},
97

108
"env": {
@@ -30,20 +28,20 @@
3028
"array-bracket-spacing": ["error", "never"],
3129
"arrow-spacing": ["error", { "before": true, "after": true }],
3230
"block-spacing": ["error", "always"],
33-
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
31+
"brace-style": ["error", "1tbs", { "allowSingleLine": false }],
3432
"camelcase": ["error", { "properties": "never" }],
3533
"comma-dangle": ["error", {
36-
"arrays": "never",
37-
"objects": "never",
38-
"imports": "never",
39-
"exports": "never",
34+
"arrays": "always-multiline",
35+
"objects": "always-multiline",
36+
"imports": "always-multiline",
37+
"exports": "always-multiline",
4038
"functions": "never"
4139
}],
4240
"comma-spacing": ["error", { "before": false, "after": true }],
4341
"comma-style": ["error", "last"],
4442
"computed-property-spacing": ["error", "never"],
4543
"constructor-super": "error",
46-
"curly": ["error", "multi-line"],
44+
"curly": ["error", "multi-or-nest"],
4745
"dot-location": ["error", "property"],
4846
"dot-notation": ["error", { "allowKeywords": true }],
4947
"eol-last": "error",
@@ -77,7 +75,7 @@
7775
"no-case-declarations": "error",
7876
"no-class-assign": "error",
7977
"no-compare-neg-zero": "error",
80-
"no-cond-assign": "error",
78+
"no-cond-assign": "off",
8179
"no-const-assign": "error",
8280
"no-constant-condition": ["error", { "checkLoops": false }],
8381
"no-control-regex": "error",
@@ -104,25 +102,18 @@
104102
"no-invalid-regexp": "error",
105103
"no-irregular-whitespace": "error",
106104
"no-iterator": "error",
107-
"no-labels": ["error", { "allowLoop": false, "allowSwitch": false }],
105+
"no-labels": ["error", { "allowLoop": true, "allowSwitch": false }],
108106
"no-lone-blocks": "error",
109107
"no-misleading-character-class": "error",
110108
"no-prototype-builtins": "error",
111109
"no-useless-catch": "error",
112-
"no-mixed-operators": ["error", {
113-
"groups": [
114-
["==", "!=", "===", "!==", ">", ">=", "<", "<="],
115-
["&&", "||"],
116-
["in", "instanceof"]
117-
],
118-
"allowSamePrecedence": true
119-
}],
110+
"no-mixed-operators": "off",
120111
"no-mixed-spaces-and-tabs": "error",
121112
"no-multi-spaces": "error",
122113
"no-multi-str": "error",
123114
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }],
124115
"no-negated-in-lhs": "error",
125-
"no-new": "error",
116+
"no-new": "off",
126117
"no-new-func": "error",
127118
"no-new-object": "error",
128119
"no-new-require": "error",
@@ -135,8 +126,8 @@
135126
"no-proto": "error",
136127
"no-redeclare": ["error", { "builtinGlobals": false }],
137128
"no-regex-spaces": "error",
138-
"no-return-assign": ["error", "except-parens"],
139-
"no-self-assign": ["error", { "props": true }],
129+
"no-return-assign": "off",
130+
"no-self-assign": "off",
140131
"no-self-compare": "error",
141132
"no-sequences": "error",
142133
"no-shadow-restricted-names": "error",
@@ -166,16 +157,17 @@
166157
"no-void": "error",
167158
"no-whitespace-before-property": "error",
168159
"no-with": "error",
169-
"object-curly-newline": ["error", { "multiline": true, "consistent": true }],
170-
"object-curly-spacing": ["error", "always"],
160+
"nonblock-statement-body-position": [2, "below"],
161+
"object-curly-newline": "off",
162+
"object-curly-spacing": "off",
171163
"object-property-newline": ["error", { "allowMultiplePropertiesPerLine": true }],
172164
"one-var": ["error", { "initialized": "never" }],
173-
"operator-linebreak": ["error", "after", { "overrides": { "?": "before", ":": "before", "|>": "before" } }],
165+
"operator-linebreak": "off",
174166
"padded-blocks": ["error", { "blocks": "never", "switches": "never", "classes": "never" }],
175167
"prefer-const": ["error", {"destructuring": "all"}],
176168
"prefer-promise-reject-errors": "error",
177169
"quote-props": ["error", "as-needed"],
178-
"quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": false }],
170+
"quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
179171
"rest-spread-spacing": ["error", "never"],
180172
"semi": ["error", "never"],
181173
"semi-spacing": ["error", { "before": false, "after": true }],
Collapse file

‎deps/npm/AUTHORS‎

Copy file name to clipboardExpand all lines: deps/npm/AUTHORS
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -725,3 +725,5 @@ Michaël Zasso <targos@protonmail.com>
725725
Gareth Jones <jones258@gmail.com>
726726
Jake Champion <me@jakechampion.name>
727727
takenspc <taken.spc@gmail.com>
728+
iraj <irajtaghlidi@gmail.com>
729+
Michele Azzolari <michele@azzolari.it>
Collapse file

‎deps/npm/CHANGELOG.md‎

Copy file name to clipboardExpand all lines: deps/npm/CHANGELOG.md
+134Lines changed: 134 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,137 @@
1+
## 7.0.7 (2020-10-30)
2+
3+
### BUG FIXES
4+
5+
* [`3990b422d`](https://github.com/npm/cli/commit/3990b422d3ff63c54d96b61596bdb8f26a45ca7b)
6+
[#2067](https://github.com/npm/cli/pull/2067)
7+
use sh as default unix shell, not bash
8+
([@isaacs](https://github.com/isaacs))
9+
* [`81d6ceef6`](https://github.com/npm/cli/commit/81d6ceef6947e46355eb3ddb05a73da50870dfc1)
10+
[#1975](https://github.com/npm/cli/issues/1975)
11+
fix npm exec on folders missing package.json
12+
([@ruyadorno](https://github.com/ruyadorno))
13+
* [`2a680e91a`](https://github.com/npm/cli/commit/2a680e91a2be1f3f03a6fbd946f74628ee1cb370)
14+
[#2083](https://github.com/npm/cli/pull/2083)
15+
delete the contents of `node_modules` only in `npm ci`
16+
([@nlf](https://github.com/nlf))
17+
* [`2636fe1f4`](https://github.com/npm/cli/commit/2636fe1f45383cb1b6fc164564dc49318815db37)
18+
[#2086](https://github.com/npm/cli/pull/2086)
19+
disable banner output if loglevel is silent in `npm run-script`
20+
([@macno](https://github.com/macno))
21+
22+
### DEPENDENCIES
23+
24+
* [`4156f053e`](https://github.com/npm/cli/commit/4156f053ee8712a4b53a210e62fba1e6562ba43a)
25+
`@npmcli/run-script@1.7.4`
26+
* restore the default `npm start` script
27+
* [`1900ae9ad`](https://github.com/npm/cli/commit/1900ae9adecd227dd6f8b49de61a99c978ba89cf)
28+
`@npmcli/promise-spawn@1.3.2`
29+
* fix errors when processing scripts as root
30+
* [`8cb0c166c`](https://github.com/npm/cli/commit/8cb0c166ccc019146a7a94d13c12723f001d2551)
31+
`@npmcli/arborist@1.0.6`
32+
* make sure missing bin links get set on reify
33+
34+
## 7.0.6 (2020-10-27)
35+
36+
### BUG FIXES
37+
38+
* [`46c7f792a`](https://github.com/npm/cli/commit/46c7f792ab16dd0b091e1ad6d37de860c8885883)
39+
[#2047](https://github.com/npm/cli/pull/2047)
40+
[#1935](https://github.com/npm/cli/issues/1935)
41+
skip the prompt when in a known ci environment
42+
([@nlf](https://github.com/nlf))
43+
* [`f8f6e1fad`](https://github.com/npm/cli/commit/f8f6e1fad8057edc02e4ce4382b1bc086d01211c)
44+
[#2049](https://github.com/npm/cli/pull/2049)
45+
properly remove pycache in release script
46+
([@MylesBorins](https://github.com/MylesBorins))
47+
* [`5db95b393`](https://github.com/npm/cli/commit/5db95b393e9c461ad34c1774f3515c322bf375bf)
48+
[#2050](https://github.com/npm/cli/pull/2050)
49+
pack: do not show individual files of bundled deps
50+
([@isaacs](https://github.com/isaacs))
51+
* [`3ee8f3b34`](https://github.com/npm/cli/commit/3ee8f3b34055da2ef1e735e1a06f64593512f1e3)
52+
[#2051](https://github.com/npm/cli/pull/2051)
53+
view: Better errors when package.json is not JSON
54+
([@isaacs](https://github.com/isaacs))
55+
56+
### DEPENDENCIES
57+
58+
* [`99ae633f6`](https://github.com/npm/cli/commit/99ae633f6ccc8aa93dc3dcda863071658b0653db)
59+
`libnpmversion@1.0.6`
60+
- respect gitTagVersion = false
61+
* [`d4173f58d`](https://github.com/npm/cli/commit/d4173f58ddefdd5456145f34f3c9f4ba5fca407e)
62+
`@npmcli/promise-spawn@1.3.1`
63+
- do not return empty buffer when stdio is inherited
64+
- attach child process to returned promise
65+
* [`c09380fa5`](https://github.com/npm/cli/commit/c09380fa51b720141a9971602f4bb7aabd4d6242)
66+
`@npmcli/run-script@1.7.3`
67+
- forward SIGINT and SIGTERM to children that inherit stdio
68+
* [`b154861ad`](https://github.com/npm/cli/commit/b154861ad244b6a14020c43738d0cce1948bfdd3)
69+
`@npmcli/arborist@1.0.5`
70+
* [`ffea6596b`](https://github.com/npm/cli/commit/ffea6596b8653da32a2b4c9a4903970e7146eee4)
71+
`agent-base@6.0.2`
72+
- support http proxy for https registries
73+
74+
## 7.0.5 (2020-10-23)
75+
76+
* [`77ad86b5e`](https://github.com/npm/cli/commit/77ad86b5eedf139dda3329a6686d5f104dc233bb)
77+
Merge docs deps with main project
78+
79+
## 7.0.4 (2020-10-23)
80+
81+
### DOCUMENTATION
82+
83+
* [`cc026daf8`](https://github.com/npm/cli/commit/cc026daf8c8330256de01375350a1407064562f9)
84+
docs: `npm-dedupe` through `npm-install`
85+
* [`aec77acf8`](https://github.com/npm/cli/commit/aec77acf886d73f85e747cafdf7a2b360befba16)
86+
[#1915](https://github.com/npm/cli/pull/1915)
87+
use "dockhand" for faster static documentation generation
88+
([@ethomson](https://github.com/ethomson))
89+
* [`aeb10d210`](https://github.com/npm/cli/commit/aeb10d210816cf6829e0ac557c79d9efd8c4bdd1)
90+
[#2024](https://github.com/npm/cli/pull/2024)
91+
Fix post-install script name
92+
([@irajtaghlidi](https://github.com/irajtaghlidi))
93+
94+
### BUG FIXES
95+
96+
* [`59e8dd6c6`](https://github.com/npm/cli/commit/59e8dd6c621f9a5c6e0b65533d8256be87a8e0d3)
97+
[#2015](https://github.com/npm/cli/issues/2015)
98+
[#2016](https://github.com/npm/cli/pull/2016)
99+
Properly set `npm_command` environment variable.
100+
101+
### TESTS
102+
103+
* [`39ad1ad9e`](https://github.com/npm/cli/commit/39ad1ad9e1e1a9530db5b90a588b5081b71abc8d)
104+
[#2001](https://github.com/npm/cli/pull/2001)
105+
`npm config` tests
106+
([@ruyadorno](https://github.com/ruyadorno))
107+
* [`b9c1caa8e`](https://github.com/npm/cli/commit/b9c1caa8e4cc7c900d09657425ea361db5974319)
108+
[#2026](https://github.com/npm/cli/pull/2026)
109+
`npm owner` test and refactor
110+
([@ruyadorno](https://github.com/ruyadorno))
111+
112+
### DEPENDENCIES
113+
114+
* [`ed6e6a9d3`](https://github.com/npm/cli/commit/ed6e6a9d3c36ffc5fb77fc25b6d66dbcb26beeb9)
115+
`eslint-plugin-standard@4.0.2`
116+
* [`b737ee999`](https://github.com/npm/cli/commit/b737ee99961364827bacf210a3e5ca5d2b7edad2)
117+
[#2009](https://github.com/npm/cli/issues/2009)
118+
[#2007](https://github.com/npm/cli/issues/2007)
119+
`npm-packlist@2.1.4`:
120+
121+
* Maintain order in package.json files array globs
122+
* Strip slashes from package files list results
123+
124+
* [`783965508`](https://github.com/npm/cli/commit/783965508d49f8ab0d8ceff38bee700cd0a06a54)
125+
[#1997](https://github.com/npm/cli/issues/1997)
126+
[#2000](https://github.com/npm/cli/issues/2000)
127+
[#2005](https://github.com/npm/cli/issues/2005)
128+
`@npmcli/arborist@1.0.4`
129+
130+
* Ensure that root is added when root.meta is set
131+
* Include all edges in explain() output when a root edge exists
132+
* Do not conflict on meta-peers that will not be replaced
133+
* Install peerOptionals if explicitly requested, or dev
134+
1135
## 7.0.3 (2020-10-20)
2136

3137
### BUG FIXES

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.