@yarnpkg/plugin-essentials 3.1.0-rc.12 → 3.1.0-rc.13
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/commands/info.js +1 -1
- package/lib/dedupeUtils.js +3 -0
- package/lib/suggestUtils.js +1 -1
- package/package.json +9 -9
package/lib/commands/info.js
CHANGED
|
@@ -160,7 +160,7 @@ class InfoCommand extends cli_1.BaseCommand {
|
|
|
160
160
|
const infoTreeChildren = {};
|
|
161
161
|
const infoTree = { children: infoTreeChildren };
|
|
162
162
|
const fetcher = configuration.makeFetcher();
|
|
163
|
-
const fetcherOptions = { project, fetcher, cache, checksums: project.storedChecksums, report: new core_1.ThrowReport(), skipIntegrityCheck: true };
|
|
163
|
+
const fetcherOptions = { project, fetcher, cache, checksums: project.storedChecksums, report: new core_1.ThrowReport(), cacheOptions: { skipIntegrityCheck: true }, skipIntegrityCheck: true };
|
|
164
164
|
const builtinInfoBuilders = [
|
|
165
165
|
// Manifest fields
|
|
166
166
|
async (pkg, extra, registerData) => {
|
package/lib/dedupeUtils.js
CHANGED
package/lib/suggestUtils.js
CHANGED
|
@@ -313,7 +313,7 @@ async function fetchDescriptorFrom(ident, range, { project, cache, workspace, pr
|
|
|
313
313
|
const report = new core_1.ThrowReport();
|
|
314
314
|
const fetcher = project.configuration.makeFetcher();
|
|
315
315
|
const resolver = project.configuration.makeResolver();
|
|
316
|
-
const fetchOptions = { project, fetcher, cache, checksums: project.storedChecksums, report, skipIntegrityCheck: true };
|
|
316
|
+
const fetchOptions = { project, fetcher, cache, checksums: project.storedChecksums, report, cacheOptions: { skipIntegrityCheck: true }, skipIntegrityCheck: true };
|
|
317
317
|
const resolveOptions = { ...fetchOptions, resolver, fetchOptions };
|
|
318
318
|
// The descriptor has to be bound for the resolvers that need a parent locator. (e.g. FileResolver)
|
|
319
319
|
// If we didn't bind it, `yarn add ./folder` wouldn't work.
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yarnpkg/plugin-essentials",
|
|
3
|
-
"version": "3.1.0-rc.
|
|
3
|
+
"version": "3.1.0-rc.13",
|
|
4
4
|
"license": "BSD-2-Clause",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@yarnpkg/fslib": "^2.6.0-rc.
|
|
7
|
+
"@yarnpkg/fslib": "^2.6.0-rc.13",
|
|
8
8
|
"@yarnpkg/json-proxy": "^2.1.1",
|
|
9
|
-
"@yarnpkg/parsers": "^2.4.1-rc.
|
|
9
|
+
"@yarnpkg/parsers": "^2.4.1-rc.13",
|
|
10
10
|
"ci-info": "^3.2.0",
|
|
11
11
|
"clipanion": "^3.0.1",
|
|
12
12
|
"enquirer": "^2.3.6",
|
|
@@ -17,18 +17,18 @@
|
|
|
17
17
|
"typanion": "^3.3.0"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@yarnpkg/cli": "^3.1.0-rc.
|
|
21
|
-
"@yarnpkg/core": "^3.1.0-rc.
|
|
22
|
-
"@yarnpkg/plugin-git": "^2.5.0-rc.
|
|
20
|
+
"@yarnpkg/cli": "^3.1.0-rc.13",
|
|
21
|
+
"@yarnpkg/core": "^3.1.0-rc.14",
|
|
22
|
+
"@yarnpkg/plugin-git": "^2.5.0-rc.3"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/lodash": "^4.14.136",
|
|
26
26
|
"@types/micromatch": "^4.0.1",
|
|
27
27
|
"@types/semver": "^7.1.0",
|
|
28
28
|
"@types/treeify": "^1.0.0",
|
|
29
|
-
"@yarnpkg/cli": "^3.1.0-rc.
|
|
30
|
-
"@yarnpkg/core": "^3.1.0-rc.
|
|
31
|
-
"@yarnpkg/plugin-git": "^2.5.0-rc.
|
|
29
|
+
"@yarnpkg/cli": "^3.1.0-rc.13",
|
|
30
|
+
"@yarnpkg/core": "^3.1.0-rc.14",
|
|
31
|
+
"@yarnpkg/plugin-git": "^2.5.0-rc.3"
|
|
32
32
|
},
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|