create-raredays-app 0.1.7 → 0.1.8
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/package.json +2 -2
- package/templates/client/app/lib/runtime.test.ts +1 -1
- package/templates/client/package.json +3 -3
- package/templates/full-stack/app/lib/runtime.test.ts +1 -1
- package/templates/full-stack/db/check.ts +1 -1
- package/templates/full-stack/db/index.ts +1 -1
- package/templates/full-stack/db/migrate.ts +1 -1
- package/templates/full-stack/package.json +3 -3
- package/templates/static/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-raredays-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Scaffold a new RareDays Next.js app.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "Jeremy Harper <jeremy@raredays.com>",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"typescript": "5.9.3",
|
|
25
25
|
"vitest": "4.1.9",
|
|
26
|
-
"@raredays/lint": "0.2.
|
|
26
|
+
"@raredays/lint": "0.2.1"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
29
|
"node": ">=20"
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// `Request`, which preserves arbitrary headers.
|
|
6
6
|
|
|
7
7
|
import { describe, expect, it } from "vitest";
|
|
8
|
-
import { app, SEEDED } from "./runtime.
|
|
8
|
+
import { app, SEEDED } from "./runtime.ts";
|
|
9
9
|
|
|
10
10
|
// Sample test demonstrating how to test app code against the framework's
|
|
11
11
|
// port contracts. The composition root provides the wired ports; tests
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"@raredays/style": "^0.1.0",
|
|
34
34
|
"lucide-react": "1.14.0",
|
|
35
35
|
"msw": "2.11.5",
|
|
36
|
-
"next": "16.2.
|
|
37
|
-
"react": "19.2.
|
|
38
|
-
"react-dom": "19.2.
|
|
36
|
+
"next": "16.2.9",
|
|
37
|
+
"react": "19.2.7",
|
|
38
|
+
"react-dom": "19.2.7"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@raredays/lint": "^0.1.0",
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// `Request`, which preserves arbitrary headers.
|
|
6
6
|
|
|
7
7
|
import { describe, expect, it } from "vitest";
|
|
8
|
-
import { app, SEEDED } from "./runtime.
|
|
8
|
+
import { app, SEEDED } from "./runtime.ts";
|
|
9
9
|
|
|
10
10
|
// Sample test demonstrating how to test app code against the framework's
|
|
11
11
|
// port contracts. The composition root provides the wired ports; tests
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
import { resolve } from "node:path";
|
|
15
15
|
import { dryRun } from "@raredays/postgres/migrations";
|
|
16
|
-
import * as appSchema from "./schema.
|
|
16
|
+
import * as appSchema from "./schema.ts";
|
|
17
17
|
|
|
18
18
|
const migrationsFolder = resolve(import.meta.dirname, "migrations");
|
|
19
19
|
const databaseUrl = process.env.DATABASE_URL;
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
// doesn't require DATABASE_URL.
|
|
27
27
|
import { createDb, type RaredaysDatabase as NeonDb } from "@raredays/postgres-neon";
|
|
28
28
|
import { createPglite, type RaredaysDatabase as PgliteDb } from "@raredays/postgres-pglite";
|
|
29
|
-
import * as appSchema from "./schema.
|
|
29
|
+
import * as appSchema from "./schema.ts";
|
|
30
30
|
|
|
31
31
|
export type Db = NeonDb<typeof appSchema> | PgliteDb<typeof appSchema>;
|
|
32
32
|
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import { resolve } from "node:path";
|
|
22
22
|
import { safeMigrate } from "@raredays/postgres/migrations";
|
|
23
|
-
import * as appSchema from "./schema.
|
|
23
|
+
import * as appSchema from "./schema.ts";
|
|
24
24
|
|
|
25
25
|
const migrationsFolder = resolve(import.meta.dirname, "migrations");
|
|
26
26
|
const appKey = process.env.npm_package_name ?? "raredays-app";
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"drizzle-orm": "0.45.2",
|
|
44
44
|
"lucide-react": "1.14.0",
|
|
45
45
|
"msw": "2.11.5",
|
|
46
|
-
"next": "16.2.
|
|
47
|
-
"react": "19.2.
|
|
48
|
-
"react-dom": "19.2.
|
|
46
|
+
"next": "16.2.9",
|
|
47
|
+
"react": "19.2.7",
|
|
48
|
+
"react-dom": "19.2.7"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@raredays/lint": "^0.1.0",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"@raredays/core": "^0.1.0",
|
|
27
27
|
"@raredays/style": "^0.1.0",
|
|
28
28
|
"lucide-react": "1.14.0",
|
|
29
|
-
"next": "16.2.
|
|
30
|
-
"react": "19.2.
|
|
31
|
-
"react-dom": "19.2.
|
|
29
|
+
"next": "16.2.9",
|
|
30
|
+
"react": "19.2.7",
|
|
31
|
+
"react-dom": "19.2.7"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@raredays/lint": "^0.1.0",
|