@@ -103,6 +103,8 @@ module.exports = function (argv: string[]): void {
103
103
. option ( '--no-gitLabIssueLinking' , 'Disable automatic expansion of GitLab-style issue syntax into links' )
104
104
. option ( '--no-dependencies' , 'Disable dependency detection via npm or yarn' )
105
105
. option ( '--pre-release' , 'Mark this package as a pre-release' )
106
+ . option ( '--allow-star-activation' , 'Allow using * in activation events' )
107
+ . option ( '--allow-missing-repository' , 'Allow missing a repository URL in package.json' )
106
108
. action (
107
109
(
108
110
version ,
@@ -123,6 +125,8 @@ module.exports = function (argv: string[]): void {
123
125
gitLabIssueLinking,
124
126
dependencies,
125
127
preRelease,
128
+ allowStarActivation,
129
+ allowMissingRepository,
126
130
}
127
131
) =>
128
132
main (
@@ -144,6 +148,8 @@ module.exports = function (argv: string[]): void {
144
148
gitLabIssueLinking,
145
149
dependencies,
146
150
preRelease,
151
+ allowStarActivation,
152
+ allowMissingRepository,
147
153
} )
148
154
)
149
155
) ;
@@ -180,6 +186,8 @@ module.exports = function (argv: string[]): void {
180
186
. option ( '--ignoreFile <path>' , 'Indicate alternative .vscodeignore' )
181
187
. option ( '--no-dependencies' , 'Disable dependency detection via npm or yarn' )
182
188
. option ( '--pre-release' , 'Mark this package as a pre-release' )
189
+ . option ( '--allow-star-activation' , 'Allow using * in activation events' )
190
+ . option ( '--allow-missing-repository' , 'Allow missing a repository URL in package.json' )
183
191
. action (
184
192
(
185
193
version ,
@@ -199,6 +207,8 @@ module.exports = function (argv: string[]): void {
199
207
ignoreFile,
200
208
dependencies,
201
209
preRelease,
210
+ allowStarActivation,
211
+ allowMissingRepository,
202
212
}
203
213
) =>
204
214
main (
@@ -219,6 +229,8 @@ module.exports = function (argv: string[]): void {
219
229
ignoreFile,
220
230
dependencies,
221
231
preRelease,
232
+ allowStarActivation,
233
+ allowMissingRepository,
222
234
} )
223
235
)
224
236
) ;
0 commit comments