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.
@@ -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.1");
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");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seedorm",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Development-first ORM — start with JSON, migrate to PostgreSQL/MySQL",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",