@@ -1335,50 +1335,38 @@ const pushMessagingTopic = async ({ returnOnZero } = { returnOnZero: false }) =>
1335
1335
const push = new Command("push")
1336
1336
.alias('deploy')
1337
1337
.description(commandDescriptions['push'])
1338
- .option(`-a, --all`, `Flag to push all resources`)
1339
- .option(`-y, --yes`, `Flag to confirm all warnings`)
1340
1338
.action(actionRunner(pushResources));
1341
1339
1342
1340
push
1343
1341
.command("function")
1344
1342
.alias("functions")
1345
1343
.description("Push functions in the current directory.")
1346
1344
.option(`-f, --functionId <functionId >`, `Function ID`)
1347
- .option(`-a, --all`, `Flag to push all functions`)
1348
- .option(`-y, --yes`, `Flag to confirm all warnings`)
1349
1345
.option(`-A, --async`, `Don't wait for functions deployments status`)
1350
1346
.action(actionRunner(pushFunction));
1351
1347
1352
1348
push
1353
1349
.command("collection")
1354
1350
.alias("collections")
1355
1351
.description("Push collections in the current project.")
1356
- .option(`-a, --all`, `Flag to push all collections`)
1357
- .option(`-a, --yes`, `Flag to confirm all warnings`)
1358
1352
.action(actionRunner(pushCollection));
1359
1353
1360
1354
push
1361
1355
.command("bucket")
1362
1356
.alias("buckets")
1363
1357
.description("Push buckets in the current project.")
1364
- .option(`-a, --all`, `Flag to push all buckets`)
1365
- .option(`-y, --yes`, `Flag to confirm all warnings`)
1366
1358
.action(actionRunner(pushBucket));
1367
1359
1368
1360
push
1369
1361
.command("team")
1370
1362
.alias("teams")
1371
1363
.description("Push teams in the current project.")
1372
- .option(`-a, --all`, `Flag to push all teams`)
1373
- .option(`-y, --yes`, `Flag to confirm all warnings`)
1374
1364
.action(actionRunner(pushTeam));
1375
1365
1376
1366
push
1377
1367
.command("topic")
1378
1368
.alias("topics")
1379
1369
.description("Push messaging topics in the current project.")
1380
- .option(`-a, --all`, `Flag to deploy all topics`)
1381
- .option(`-y, --yes`, `Flag to confirm all warnings`)
1382
1370
.action(actionRunner(pushMessagingTopic));
1383
1371
1384
1372
module.exports = {
0 commit comments