create-raredays-app 0.1.7 → 0.1.9

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-raredays-app",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
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.0"
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.js";
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.4",
37
- "react": "19.2.5",
38
- "react-dom": "19.2.5"
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",
@@ -1,6 +1,7 @@
1
1
  ---
2
- title: Repository conventions
3
- topic: repo-conventions
2
+ name: Repository conventions
3
+ description: How an app scaffolded with create-raredays-app is laid out, its always-on pnpm workflow, and where each @raredays/* capability lives.
4
+ topics: [repo-conventions]
4
5
  tags: [getting-started]
5
6
  ---
6
7
 
@@ -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.js";
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.js";
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.js";
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.js";
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.4",
47
- "react": "19.2.5",
48
- "react-dom": "19.2.5"
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",
@@ -1,6 +1,7 @@
1
1
  ---
2
- title: Repository conventions
3
- topic: repo-conventions
2
+ name: Repository conventions
3
+ description: How an app scaffolded with create-raredays-app is laid out, its always-on pnpm workflow, and where each @raredays/* capability lives.
4
+ topics: [repo-conventions]
4
5
  tags: [getting-started]
5
6
  ---
6
7
 
@@ -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.4",
30
- "react": "19.2.5",
31
- "react-dom": "19.2.5"
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",
@@ -1,6 +1,7 @@
1
1
  ---
2
- title: Repository conventions
3
- topic: repo-conventions
2
+ name: Repository conventions
3
+ description: How an app scaffolded with create-raredays-app is laid out, its always-on pnpm workflow, and where each @raredays/* capability lives.
4
+ topics: [repo-conventions]
4
5
  tags: [getting-started]
5
6
  ---
6
7