@yarnpkg/plugin-essentials 4.0.0-rc.37 → 4.0.0-rc.39
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/add.d.ts +1 -1
- package/lib/commands/bin.d.ts +1 -1
- package/lib/commands/cache/clean.d.ts +1 -1
- package/lib/commands/config/get.d.ts +1 -1
- package/lib/commands/config/set.d.ts +1 -1
- package/lib/commands/config/unset.d.ts +1 -1
- package/lib/commands/config.d.ts +1 -1
- package/lib/commands/dedupe.d.ts +1 -1
- package/lib/commands/explain/peerRequirements.d.ts +2 -2
- package/lib/commands/install.d.ts +1 -1
- package/lib/commands/link.d.ts +1 -1
- package/lib/commands/plugin/check.d.ts +1 -1
- package/lib/commands/plugin/import/sources.d.ts +1 -1
- package/lib/commands/plugin/import.d.ts +1 -1
- package/lib/commands/plugin/list.d.ts +1 -1
- package/lib/commands/plugin/remove.d.ts +1 -1
- package/lib/commands/plugin/runtime.d.ts +1 -1
- package/lib/commands/rebuild.d.ts +1 -1
- package/lib/commands/remove.d.ts +1 -1
- package/lib/commands/runIndex.d.ts +1 -1
- package/lib/commands/set/resolution.d.ts +1 -1
- package/lib/commands/set/version/sources.d.ts +1 -1
- package/lib/commands/set/version.d.ts +1 -1
- package/lib/commands/unlink.d.ts +1 -1
- package/lib/commands/up.d.ts +3 -3
- package/lib/commands/workspaces/list.d.ts +1 -1
- package/package.json +9 -9
package/lib/commands/add.d.ts
CHANGED
package/lib/commands/bin.d.ts
CHANGED
package/lib/commands/config.d.ts
CHANGED
package/lib/commands/dedupe.d.ts
CHANGED
|
@@ -6,8 +6,8 @@ export default class ExplainPeerRequirementsCommand extends BaseCommand {
|
|
|
6
6
|
static paths: string[][];
|
|
7
7
|
static usage: import("clipanion").Usage;
|
|
8
8
|
hash: string | undefined;
|
|
9
|
-
execute(): Promise<
|
|
9
|
+
execute(): Promise<0 | 1>;
|
|
10
10
|
}
|
|
11
11
|
export declare function explainPeerRequirements(peerRequirementsHash: string, project: Project, opts: {
|
|
12
12
|
stdout: Writable;
|
|
13
|
-
}): Promise<
|
|
13
|
+
}): Promise<0 | 1>;
|
package/lib/commands/link.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export default class PluginImportSourcesCommand extends BaseCommand {
|
|
|
12
12
|
noMinify: boolean;
|
|
13
13
|
force: boolean;
|
|
14
14
|
name: string;
|
|
15
|
-
execute(): Promise<
|
|
15
|
+
execute(): Promise<0 | 1>;
|
|
16
16
|
}
|
|
17
17
|
export type BuildAndSavePluginsSpec = {
|
|
18
18
|
context: CommandContext;
|
|
@@ -7,7 +7,7 @@ export default class PluginImportCommand extends BaseCommand {
|
|
|
7
7
|
static usage: Usage;
|
|
8
8
|
name: string;
|
|
9
9
|
checksum: boolean;
|
|
10
|
-
execute(): Promise<
|
|
10
|
+
execute(): Promise<0 | 1>;
|
|
11
11
|
}
|
|
12
12
|
export declare function savePlugin(pluginSpec: string, pluginBuffer: Buffer, { checksum, project, report }: {
|
|
13
13
|
checksum?: boolean;
|
package/lib/commands/remove.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export default class SetVersionSourcesCommand extends BaseCommand {
|
|
|
12
12
|
noMinify: boolean;
|
|
13
13
|
force: boolean;
|
|
14
14
|
skipPlugins: boolean;
|
|
15
|
-
execute(): Promise<
|
|
15
|
+
execute(): Promise<0 | 1>;
|
|
16
16
|
}
|
|
17
17
|
export declare function runWorkflow(workflow: Array<Array<string>>, { configuration, context, target }: {
|
|
18
18
|
configuration: Configuration;
|
|
@@ -12,7 +12,7 @@ export default class SetVersionCommand extends BaseCommand {
|
|
|
12
12
|
useYarnPath: boolean | undefined;
|
|
13
13
|
onlyIfNeeded: boolean;
|
|
14
14
|
version: string;
|
|
15
|
-
execute(): Promise<
|
|
15
|
+
execute(): Promise<0 | 1>;
|
|
16
16
|
}
|
|
17
17
|
export declare function resolveRange(configuration: Configuration, request: string): Promise<string>;
|
|
18
18
|
export declare function resolveTag(configuration: Configuration, request: `stable` | `canary`): Promise<string>;
|
package/lib/commands/unlink.d.ts
CHANGED
package/lib/commands/up.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export default class UpCommand extends BaseCommand {
|
|
|
18
18
|
}, {
|
|
19
19
|
[key: string]: unknown;
|
|
20
20
|
}>[];
|
|
21
|
-
execute(): Promise<
|
|
22
|
-
executeUpRecursive(): Promise<
|
|
23
|
-
executeUpClassic(): Promise<
|
|
21
|
+
execute(): Promise<0 | 1>;
|
|
22
|
+
executeUpRecursive(): Promise<0 | 1>;
|
|
23
|
+
executeUpClassic(): Promise<0 | 1>;
|
|
24
24
|
}
|
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.39",
|
|
4
4
|
"stableVersion": "3.3.0",
|
|
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.39",
|
|
13
|
+
"@yarnpkg/parsers": "^3.0.0-rc.39",
|
|
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.39",
|
|
25
|
+
"@yarnpkg/core": "^4.0.0-rc.39",
|
|
26
|
+
"@yarnpkg/plugin-git": "^3.0.0-rc.39"
|
|
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.39",
|
|
33
|
+
"@yarnpkg/core": "^4.0.0-rc.39",
|
|
34
|
+
"@yarnpkg/plugin-git": "^3.0.0-rc.39"
|
|
35
35
|
},
|
|
36
36
|
"repository": {
|
|
37
37
|
"type": "git",
|