@yarnpkg/plugin-essentials 4.0.0-rc.23 → 4.0.0-rc.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dedupeUtils.js +1 -1
- package/package.json +9 -9
package/lib/dedupeUtils.js
CHANGED
|
@@ -123,7 +123,7 @@ async function dedupe(project, { strategy, patterns, cache, report }) {
|
|
|
123
123
|
const algorithm = DEDUPE_ALGORITHMS[strategy];
|
|
124
124
|
const dedupePromises = await algorithm(project, patterns, { resolver, resolveOptions, fetcher, fetchOptions });
|
|
125
125
|
const progress = core_1.Report.progressViaCounter(dedupePromises.length);
|
|
126
|
-
report.reportProgress(progress);
|
|
126
|
+
await report.reportProgress(progress);
|
|
127
127
|
let dedupedPackageCount = 0;
|
|
128
128
|
await Promise.all(dedupePromises.map(dedupePromise => dedupePromise
|
|
129
129
|
.then(dedupe => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yarnpkg/plugin-essentials",
|
|
3
|
-
"version": "4.0.0-rc.
|
|
3
|
+
"version": "4.0.0-rc.25",
|
|
4
4
|
"stableVersion": "3.2.3",
|
|
5
5
|
"license": "BSD-2-Clause",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"./package.json": "./package.json"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@yarnpkg/fslib": "^3.0.0-rc.
|
|
13
|
-
"@yarnpkg/parsers": "^3.0.0-rc.
|
|
12
|
+
"@yarnpkg/fslib": "^3.0.0-rc.25",
|
|
13
|
+
"@yarnpkg/parsers": "^3.0.0-rc.25",
|
|
14
14
|
"ci-info": "^3.2.0",
|
|
15
15
|
"clipanion": "^3.2.0-rc.10",
|
|
16
16
|
"enquirer": "^2.3.6",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"typanion": "^3.3.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@yarnpkg/cli": "^4.0.0-rc.
|
|
25
|
-
"@yarnpkg/core": "^4.0.0-rc.
|
|
26
|
-
"@yarnpkg/plugin-git": "^3.0.0-rc.
|
|
24
|
+
"@yarnpkg/cli": "^4.0.0-rc.25",
|
|
25
|
+
"@yarnpkg/core": "^4.0.0-rc.25",
|
|
26
|
+
"@yarnpkg/plugin-git": "^3.0.0-rc.25"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/lodash": "^4.14.136",
|
|
30
30
|
"@types/micromatch": "^4.0.1",
|
|
31
31
|
"@types/semver": "^7.1.0",
|
|
32
|
-
"@yarnpkg/cli": "^4.0.0-rc.
|
|
33
|
-
"@yarnpkg/core": "^4.0.0-rc.
|
|
34
|
-
"@yarnpkg/plugin-git": "^3.0.0-rc.
|
|
32
|
+
"@yarnpkg/cli": "^4.0.0-rc.25",
|
|
33
|
+
"@yarnpkg/core": "^4.0.0-rc.25",
|
|
34
|
+
"@yarnpkg/plugin-git": "^3.0.0-rc.25"
|
|
35
35
|
},
|
|
36
36
|
"repository": {
|
|
37
37
|
"type": "git",
|