create-inox-app 0.1.0 → 0.2.0
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/cli.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
import { createRequire } from "node:module";
|
|
2
3
|
import { aborted, callbackify, debuglog, formatWithOptions, inspect, promisify, stripVTControlCharacters } from "node:util";
|
|
3
4
|
import y, { execArgv, execPath, hrtime, platform, stdin, stdout } from "node:process";
|
|
@@ -22193,4 +22194,4 @@ createInoxCli().catch((err) => {
|
|
|
22193
22194
|
process.exit(1);
|
|
22194
22195
|
});
|
|
22195
22196
|
|
|
22196
|
-
//#endregion
|
|
22197
|
+
//#endregion
|
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
"db:migrate": "turbo run db:migrate",
|
|
17
17
|
"db:push": "turbo run db:push",
|
|
18
18
|
"db:studio": "turbo run db:studio",
|
|
19
|
+
{{#if hasDatabase}}
|
|
20
|
+
"setup": "turbo run setup",
|
|
21
|
+
{{/if}}
|
|
19
22
|
"docker:dev": "docker compose --profile dev up",
|
|
20
23
|
"docker:dev:down": "docker compose --profile dev down",
|
|
21
24
|
"docker:prod": "docker compose --profile prod up --build"
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"db:migrate": "bun run lib/db/migrate.ts",
|
|
12
12
|
"db:push": "drizzle-kit push",
|
|
13
13
|
"db:seed": "bun run lib/db/seed.ts",
|
|
14
|
-
"db:studio": "drizzle-kit studio"
|
|
14
|
+
"db:studio": "drizzle-kit studio",
|
|
15
|
+
"setup": "bun run db:generate && bun run db:migrate && SEED_EMAILS=example@gmail.com bun run db:seed"
|
|
15
16
|
},
|
|
16
17
|
"dependencies": {
|
|
17
18
|
"@ai-sdk/react": "^3.0.88",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-inox-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Scaffold production-ready monorepo projects with one command",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
],
|
|
24
24
|
"scripts": {
|
|
25
25
|
"dev": "bun run bin/cli.ts",
|
|
26
|
-
"build": "tsdown && cp -r src/templates dist/templates",
|
|
26
|
+
"build": "tsdown && printf '%s\n' '#!/usr/bin/env node' \"$(cat dist/cli.js)\" > dist/cli.js && cp -r src/templates dist/templates",
|
|
27
27
|
"check-types": "tsc --noEmit",
|
|
28
28
|
"changeset": "changeset",
|
|
29
29
|
"version": "changeset version",
|