Files
windmill/cli/push.ts
T
2024-04-27 18:54:10 +02:00

19 lines
498 B
TypeScript

// deno-lint-ignore-file no-explicit-any
import { colors, Command, log } from "./deps.ts";
import { GlobalOptions } from "./types.ts";
function stub(_opts: GlobalOptions, _dir?: string) {
log.info(
colors.red.underline(
'Push is deprecated. Use "sync push --raw" instead. See <TODO_LINK_HERE> for more information.'
)
);
}
const command = new Command()
.description("Push all files from a folder")
.arguments("[dir:string]")
.action(stub as any);
export default command;