@jpp-toolkit/plugin-changesets 0.0.39 → 0.0.41
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/dist/index.d.mts +13 -13
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Command } from "@jpp-toolkit/core";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _oclif_core_interfaces13 from "@oclif/core/interfaces";
|
|
3
3
|
|
|
4
4
|
//#region src/changeset-command.d.ts
|
|
5
5
|
declare abstract class ChangesetCommand extends Command {
|
|
@@ -11,8 +11,8 @@ declare class AddChangesetCommand extends ChangesetCommand {
|
|
|
11
11
|
static summary: string;
|
|
12
12
|
static description: string;
|
|
13
13
|
static flags: {
|
|
14
|
-
empty:
|
|
15
|
-
open:
|
|
14
|
+
empty: _oclif_core_interfaces13.BooleanFlag<boolean>;
|
|
15
|
+
open: _oclif_core_interfaces13.BooleanFlag<boolean>;
|
|
16
16
|
};
|
|
17
17
|
static examples: {
|
|
18
18
|
description: string;
|
|
@@ -37,8 +37,8 @@ declare class PreChangesetCommand extends ChangesetCommand {
|
|
|
37
37
|
static summary: string;
|
|
38
38
|
static description: string;
|
|
39
39
|
static args: {
|
|
40
|
-
action:
|
|
41
|
-
tag:
|
|
40
|
+
action: _oclif_core_interfaces13.Arg<string, Record<string, unknown>>;
|
|
41
|
+
tag: _oclif_core_interfaces13.Arg<string | undefined, Record<string, unknown>>;
|
|
42
42
|
};
|
|
43
43
|
static examples: {
|
|
44
44
|
description: string;
|
|
@@ -52,9 +52,9 @@ declare class PublishChangesetCommand extends ChangesetCommand {
|
|
|
52
52
|
static summary: string;
|
|
53
53
|
static description: string;
|
|
54
54
|
static flags: {
|
|
55
|
-
otp:
|
|
56
|
-
tag:
|
|
57
|
-
'no-git-tag':
|
|
55
|
+
otp: _oclif_core_interfaces13.OptionFlag<string | undefined, _oclif_core_interfaces13.CustomOptions>;
|
|
56
|
+
tag: _oclif_core_interfaces13.OptionFlag<string | undefined, _oclif_core_interfaces13.CustomOptions>;
|
|
57
|
+
'no-git-tag': _oclif_core_interfaces13.BooleanFlag<boolean>;
|
|
58
58
|
};
|
|
59
59
|
static examples: {
|
|
60
60
|
description: string;
|
|
@@ -68,9 +68,9 @@ declare class StatusChangesetCommand extends ChangesetCommand {
|
|
|
68
68
|
static summary: string;
|
|
69
69
|
static description: string;
|
|
70
70
|
static flags: {
|
|
71
|
-
verbose:
|
|
72
|
-
output:
|
|
73
|
-
since:
|
|
71
|
+
verbose: _oclif_core_interfaces13.BooleanFlag<boolean>;
|
|
72
|
+
output: _oclif_core_interfaces13.OptionFlag<string | undefined, _oclif_core_interfaces13.CustomOptions>;
|
|
73
|
+
since: _oclif_core_interfaces13.OptionFlag<string | undefined, _oclif_core_interfaces13.CustomOptions>;
|
|
74
74
|
};
|
|
75
75
|
static examples: {
|
|
76
76
|
description: string;
|
|
@@ -91,8 +91,8 @@ declare class VersionChangesetCommand extends ChangesetCommand {
|
|
|
91
91
|
static summary: string;
|
|
92
92
|
static description: string;
|
|
93
93
|
static flags: {
|
|
94
|
-
ignore:
|
|
95
|
-
snapshot:
|
|
94
|
+
ignore: _oclif_core_interfaces13.OptionFlag<string | undefined, _oclif_core_interfaces13.CustomOptions>;
|
|
95
|
+
snapshot: _oclif_core_interfaces13.OptionFlag<string | undefined, _oclif_core_interfaces13.CustomOptions>;
|
|
96
96
|
};
|
|
97
97
|
static examples: {
|
|
98
98
|
description: string;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jpp-toolkit/plugin-changesets",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.41",
|
|
4
4
|
"description": "Plugin that add the changeset command to the jpp cli.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jpp",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"@changesets/cli": "2.29.8",
|
|
37
37
|
"@oclif/core": "4.8.0",
|
|
38
38
|
"execa": "9.6.1",
|
|
39
|
-
"@jpp-toolkit/core": "0.0.
|
|
40
|
-
"@jpp-toolkit/utils": "0.0.
|
|
39
|
+
"@jpp-toolkit/core": "0.0.24",
|
|
40
|
+
"@jpp-toolkit/utils": "0.0.22"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"oclif": "4.22.
|
|
43
|
+
"oclif": "4.22.70"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": "24",
|