convex
Version:
Client for the Convex Cloud
16 lines (15 loc) • 567 B
JavaScript
;
import { chalkStderr } from "chalk";
import { Command } from "@commander-js/extra-typings";
import { logMessage } from "../bundler/log.js";
export const update = new Command("update").description("Print instructions for updating the convex package").allowExcessArguments(false).action(async () => {
logMessage(
chalkStderr.green(
`To view the Convex changelog, go to https://news.convex.dev/tag/releases/
When you are ready to upgrade, run the following command:
npm install convex@latest
`
)
);
});
//# sourceMappingURL=update.js.map