Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions src/commands/export/export.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import chalk from "chalk";

import { container } from "../../config/container.mjs";
import { ValidationError } from "../../lib/errors.mjs";
import { ACCOUNT_OPTIONS } from "../../lib/options.mjs";
import createCommand from "./create.mjs";
Expand Down Expand Up @@ -33,14 +30,6 @@ function validateAccountOnlyOptions(argv) {
function buildExportCommand(yargs) {
return yargs
.options(ACCOUNT_OPTIONS)
.middleware(() => {
const logger = container.resolve("logger");
logger.stderr(
chalk.yellow(
`Warning: fauna export is currently in beta. To learn more, visit https://docs.fauna.com/fauna/current/build/cli/v4/commands/export/\n`,
),
);
})
.check(validateAccountOnlyOptions)
.command(createCommand)
.command(listCommand)
Expand All @@ -61,6 +50,6 @@ function buildExportCommand(yargs) {

export default {
command: "export <method>",
description: "Create and manage exports. Currently in beta.",
description: "Create and manage exports.",
builder: buildExportCommand,
};
Loading