seedorm 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/seedorm.cjs +1 -1
- package/package.json +1 -1
package/dist/bin/seedorm.cjs
CHANGED
|
@@ -5679,7 +5679,7 @@ async function studioCommand(options) {
|
|
|
5679
5679
|
// src/cli/index.ts
|
|
5680
5680
|
function createCLI() {
|
|
5681
5681
|
const program3 = new Command();
|
|
5682
|
-
program3.name("seedorm").description("Development-first ORM \u2014 start with JSON, migrate to PostgreSQL/MySQL").version("0.2
|
|
5682
|
+
program3.name("seedorm").description("Development-first ORM \u2014 start with JSON, migrate to PostgreSQL/MySQL").version("0.3.2");
|
|
5683
5683
|
program3.command("init").description("Initialize a new seedorm project").option("-f, --force", "Overwrite existing config").action(initCommand);
|
|
5684
5684
|
program3.command("start").description("Start the development REST API server").option("-p, --port <port>", "Port to listen on", "4100").action(startCommand);
|
|
5685
5685
|
const migrate = program3.command("migrate").description("Migration commands");
|