@storm-software/workspace-tools 1.275.4 → 1.275.5

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.
@@ -1,180 +0,0 @@
1
-
2
- // Generated by @storm-software/untyped
3
- // Do not edit this file directly
4
-
5
- export interface ReleaseVersionGeneratorSchema {
6
- /**
7
- * Projects
8
- *
9
- * The projects to release
10
- *
11
- */
12
- projects: Array<{
13
- [key: string]: any
14
- }>,
15
-
16
- /**
17
- * Release Group
18
- *
19
- * The release group
20
- *
21
- */
22
- releaseGroup: {
23
- [key: string]: any
24
- },
25
-
26
- /**
27
- * Project Graph
28
- *
29
- * The project graph
30
- *
31
- */
32
- projectGraph: {
33
- [key: string]: any
34
- },
35
-
36
- /**
37
- * Specifier
38
- *
39
- * The specifier
40
- *
41
- */
42
- specifier: string,
43
-
44
- /**
45
- * Specifier Source
46
- *
47
- * The specifier source
48
- *
49
- */
50
- specifierSource?: string,
51
-
52
- /**
53
- * Preid
54
- *
55
- * The preid
56
- *
57
- */
58
- preid?: string,
59
-
60
- /**
61
- * Package Root
62
- *
63
- * The package root
64
- *
65
- */
66
- packageRoot?: string,
67
-
68
- /**
69
- * Current Version Resolver
70
- *
71
- * The current version resolver
72
- *
73
- * @default "git-tag"
74
- */
75
- currentVersionResolver?: string,
76
-
77
- /**
78
- * Current Version Resolver Metadata
79
- *
80
- * The current version resolver metadata
81
- *
82
- */
83
- currentVersionResolverMetadata?: {
84
- [key: string]: any
85
- },
86
-
87
- /**
88
- * Fallback Current Version Resolver
89
- *
90
- * The fallback current version resolver
91
- *
92
- * @default "disk"
93
- */
94
- fallbackCurrentVersionResolver?: string,
95
-
96
- /**
97
- * First Release
98
- *
99
- * Release the first version
100
- *
101
- */
102
- firstRelease?: boolean,
103
-
104
- /**
105
- * Version Prefix
106
- *
107
- * The version prefix
108
- *
109
- *
110
- * @enum ,auto,~,^,=
111
- */
112
- versionPrefix?: string,
113
-
114
- /**
115
- * Skip Lock File Update
116
- *
117
- * Skip lock file update
118
- *
119
- */
120
- skipLockFileUpdate?: boolean,
121
-
122
- /**
123
- * Install Args
124
- *
125
- * The install arguments
126
- *
127
- */
128
- installArgs?: string,
129
-
130
- /**
131
- * Install Ignore Scripts
132
- *
133
- * Ignore scripts
134
- *
135
- */
136
- installIgnoreScripts?: boolean,
137
-
138
- /**
139
- * Conventional Commits Config
140
- *
141
- * The conventional commits config
142
- *
143
- */
144
- conventionalCommitsConfig?: {
145
- [key: string]: any
146
- },
147
-
148
- /**
149
- * Delete Version Plans
150
- *
151
- * Delete version plans
152
- *
153
- */
154
- deleteVersionPlans?: boolean,
155
-
156
- /**
157
- * Update Dependents
158
- *
159
- * Update dependents
160
- *
161
- */
162
- updateDependents?: string,
163
-
164
- /**
165
- * Log Unchanged Projects
166
- *
167
- * Log unchanged projects
168
- *
169
- */
170
- logUnchangedProjects?: boolean,
171
-
172
- /**
173
- * Preserve Local Dependency Protocols
174
- *
175
- * Preserve local dependency protocols
176
- *
177
- */
178
- preserveLocalDependencyProtocols?: boolean,
179
- }
180
-
@@ -1,158 +0,0 @@
1
- {
2
- "id": "#",
3
- "title": "Release Version Generator",
4
- "description": "A type definition for a release version generator schema",
5
- "required": [
6
- "projects",
7
- "releaseGroup",
8
- "projectGraph",
9
- "specifier"
10
- ],
11
- "properties": {
12
- "projects": {
13
- "title": "Projects",
14
- "type": "array",
15
- "items": {
16
- "type": "object"
17
- },
18
- "description": "The projects to release",
19
- "id": "#projects"
20
- },
21
- "releaseGroup": {
22
- "title": "Release Group",
23
- "type": "object",
24
- "description": "The release group",
25
- "id": "#releaseGroup",
26
- "default": {}
27
- },
28
- "projectGraph": {
29
- "title": "Project Graph",
30
- "type": "object",
31
- "description": "The project graph",
32
- "id": "#projectGraph",
33
- "default": {}
34
- },
35
- "specifier": {
36
- "title": "Specifier",
37
- "type": "string",
38
- "description": "The specifier",
39
- "id": "#specifier"
40
- },
41
- "specifierSource": {
42
- "title": "Specifier Source",
43
- "type": "string",
44
- "description": "The specifier source",
45
- "id": "#specifierSource"
46
- },
47
- "preid": {
48
- "title": "Preid",
49
- "type": "string",
50
- "description": "The preid",
51
- "id": "#preid"
52
- },
53
- "packageRoot": {
54
- "title": "Package Root",
55
- "type": "string",
56
- "description": "The package root",
57
- "id": "#packageRoot"
58
- },
59
- "currentVersionResolver": {
60
- "title": "Current Version Resolver",
61
- "type": "string",
62
- "description": "The current version resolver",
63
- "id": "#currentVersionResolver",
64
- "default": "git-tag"
65
- },
66
- "currentVersionResolverMetadata": {
67
- "title": "Current Version Resolver Metadata",
68
- "type": "object",
69
- "description": "The current version resolver metadata",
70
- "id": "#currentVersionResolverMetadata",
71
- "default": {}
72
- },
73
- "fallbackCurrentVersionResolver": {
74
- "title": "Fallback Current Version Resolver",
75
- "type": "string",
76
- "description": "The fallback current version resolver",
77
- "id": "#fallbackCurrentVersionResolver",
78
- "default": "disk"
79
- },
80
- "firstRelease": {
81
- "title": "First Release",
82
- "type": "boolean",
83
- "description": "Release the first version",
84
- "id": "#firstRelease"
85
- },
86
- "versionPrefix": {
87
- "title": "Version Prefix",
88
- "type": "string",
89
- "description": "The version prefix",
90
- "enum": [
91
- "",
92
- "auto",
93
- "~",
94
- "^",
95
- "="
96
- ],
97
- "id": "#versionPrefix"
98
- },
99
- "skipLockFileUpdate": {
100
- "title": "Skip Lock File Update",
101
- "type": "boolean",
102
- "description": "Skip lock file update",
103
- "id": "#skipLockFileUpdate"
104
- },
105
- "installArgs": {
106
- "title": "Install Args",
107
- "type": "string",
108
- "description": "The install arguments",
109
- "id": "#installArgs"
110
- },
111
- "installIgnoreScripts": {
112
- "title": "Install Ignore Scripts",
113
- "type": "boolean",
114
- "description": "Ignore scripts",
115
- "id": "#installIgnoreScripts"
116
- },
117
- "conventionalCommitsConfig": {
118
- "title": "Conventional Commits Config",
119
- "type": "object",
120
- "description": "The conventional commits config",
121
- "id": "#conventionalCommitsConfig",
122
- "default": {}
123
- },
124
- "deleteVersionPlans": {
125
- "title": "Delete Version Plans",
126
- "type": "boolean",
127
- "description": "Delete version plans",
128
- "id": "#deleteVersionPlans"
129
- },
130
- "updateDependents": {
131
- "title": "Update Dependents",
132
- "type": "string",
133
- "description": "Update dependents",
134
- "id": "#updateDependents"
135
- },
136
- "logUnchangedProjects": {
137
- "title": "Log Unchanged Projects",
138
- "type": "boolean",
139
- "description": "Log unchanged projects",
140
- "id": "#logUnchangedProjects"
141
- },
142
- "preserveLocalDependencyProtocols": {
143
- "title": "Preserve Local Dependency Protocols",
144
- "type": "boolean",
145
- "description": "Preserve local dependency protocols",
146
- "id": "#preserveLocalDependencyProtocols"
147
- }
148
- },
149
- "type": "object",
150
- "default": {
151
- "releaseGroup": {},
152
- "projectGraph": {},
153
- "currentVersionResolver": "git-tag",
154
- "currentVersionResolverMetadata": {},
155
- "fallbackCurrentVersionResolver": "disk",
156
- "conventionalCommitsConfig": {}
157
- }
158
- }