@farm.js/create-app 0.1.0-beta.75 → 0.1.0-beta.77

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/README.md CHANGED
@@ -5,7 +5,7 @@ Create a new FARMJS application
5
5
  FARMJS is currently in beta.
6
6
 
7
7
  ```bash
8
- pnpm create @farm.js/app@beta my-app --template basic --typescript
8
+ pnpm --config.minimumReleaseAge=0 create @farm.js/app@beta my-app --template basic --typescript
9
9
  cd my-app
10
10
  pnpm dev
11
11
  ```
@@ -13,12 +13,13 @@ pnpm dev
13
13
  The scaffolder installs FARMJS, React by default, TypeScript, and the other starter dependencies
14
14
  automatically. The command explicitly selects the minimal Basic starter. Use `pnpm create`, not
15
15
  `pnpm add`; pnpm resolves this initializer command to the published `@farm.js/create-app` package.
16
- Pass `--skip-install` when you only want to generate the project files.
16
+ The command scopes `minimumReleaseAge=0` to the initializer so pnpm 11 can resolve a beta published
17
+ within the last 24 hours. Pass `--skip-install` when you only want to generate the project files.
17
18
 
18
19
  Choose React, Preact, Solid, Vue, or Svelte for the Basic and Better Auth starters:
19
20
 
20
21
  ```bash
21
- pnpm create @farm.js/app@beta my-app --template better-auth --renderer solid --typescript
22
+ pnpm --config.minimumReleaseAge=0 create @farm.js/app@beta my-app --template better-auth --renderer solid --typescript
22
23
  ```
23
24
 
24
25
  React remains the default when `--renderer` is omitted. The interactive Basic and Better Auth
@@ -27,7 +28,7 @@ flows also offer a renderer chooser.
27
28
  List every starter:
28
29
 
29
30
  ```bash
30
- pnpm create @farm.js/app@beta --list-templates
31
+ pnpm --config.minimumReleaseAge=0 create @farm.js/app@beta --list-templates
31
32
  ```
32
33
 
33
34
  Available templates:
@@ -42,7 +43,7 @@ home page, and setup documentation. Better Auth has renderer-native UI for all f
42
43
  other integration templates currently use React. For example:
43
44
 
44
45
  ```bash
45
- pnpm create @farm.js/app@beta stripe-app --template stripe --typescript
46
+ pnpm --config.minimumReleaseAge=0 create @farm.js/app@beta stripe-app --template stripe --typescript
46
47
  ```
47
48
 
48
49
  See the [FARMJS repository](https://github.com/farming-labs/farm.js) for documentation, examples, and support.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farm.js/create-app",
3
- "version": "0.1.0-beta.75",
3
+ "version": "0.1.0-beta.77",
4
4
  "description": "Create a new FARMJS application",
5
5
  "keywords": [
6
6
  "@farm.js/create-app",
@@ -10,7 +10,7 @@
10
10
  "type-check": "tsc --noEmit"
11
11
  },
12
12
  "dependencies": {
13
- "@farm.js/core": "0.1.0-beta.75",
13
+ "@farm.js/core": "0.1.0-beta.77",
14
14
  "@farm.js/preact": "0.1.0-beta.31",
15
15
  "@fontsource-variable/geist": "5.3.0",
16
16
  "@fontsource-variable/geist-mono": "5.3.0",
@@ -18,7 +18,7 @@
18
18
  "zod": "4.1.12"
19
19
  },
20
20
  "devDependencies": {
21
- "@farm.js/cli": "0.1.0-beta.75",
21
+ "@farm.js/cli": "0.1.0-beta.77",
22
22
  "tailwindcss": "^4.0.0",
23
23
  "typescript": "^5.3.3"
24
24
  },
@@ -9,7 +9,7 @@
9
9
  "type-check": "tsc --noEmit"
10
10
  },
11
11
  "dependencies": {
12
- "@farm.js/core": "0.1.0-beta.75",
12
+ "@farm.js/core": "0.1.0-beta.77",
13
13
  "@farm.js/solid": "0.1.0-beta.27",
14
14
  "@fontsource-variable/geist": "5.3.0",
15
15
  "@fontsource-variable/geist-mono": "5.3.0",
@@ -17,7 +17,7 @@
17
17
  "zod": "4.1.12"
18
18
  },
19
19
  "devDependencies": {
20
- "@farm.js/cli": "0.1.0-beta.75",
20
+ "@farm.js/cli": "0.1.0-beta.77",
21
21
  "tailwindcss": "^4.0.0",
22
22
  "typescript": "^5.3.3"
23
23
  },
@@ -11,7 +11,7 @@
11
11
  "type-check": "svelte-check --tsconfig ./tsconfig.json"
12
12
  },
13
13
  "dependencies": {
14
- "@farm.js/core": "0.1.0-beta.75",
14
+ "@farm.js/core": "0.1.0-beta.77",
15
15
  "@farm.js/svelte": "0.1.0-beta.30",
16
16
  "@fontsource-variable/geist": "5.3.0",
17
17
  "@fontsource-variable/geist-mono": "5.3.0",
@@ -19,7 +19,7 @@
19
19
  "zod": "4.1.12"
20
20
  },
21
21
  "devDependencies": {
22
- "@farm.js/cli": "0.1.0-beta.75",
22
+ "@farm.js/cli": "0.1.0-beta.77",
23
23
  "svelte-check": "4.7.5",
24
24
  "tailwindcss": "^4.0.0",
25
25
  "typescript": "^5.3.3"
@@ -9,7 +9,7 @@
9
9
  "type-check": "vue-tsc --noEmit"
10
10
  },
11
11
  "dependencies": {
12
- "@farm.js/core": "0.1.0-beta.75",
12
+ "@farm.js/core": "0.1.0-beta.77",
13
13
  "@farm.js/vue": "0.1.0-beta.27",
14
14
  "@fontsource-variable/geist": "5.3.0",
15
15
  "@fontsource-variable/geist-mono": "5.3.0",
@@ -17,7 +17,7 @@
17
17
  "zod": "4.1.12"
18
18
  },
19
19
  "devDependencies": {
20
- "@farm.js/cli": "0.1.0-beta.75",
20
+ "@farm.js/cli": "0.1.0-beta.77",
21
21
  "tailwindcss": "^4.0.0",
22
22
  "typescript": "^5.3.3",
23
23
  "vue-tsc": "3.3.9"
@@ -20,7 +20,7 @@ This project was generated from the FARMJS Auth template included with `@farm.js
20
20
  ## Quick start
21
21
 
22
22
  ```bash
23
- pnpm create @farm.js/app@beta my-app --template auth --typescript
23
+ pnpm --config.minimumReleaseAge=0 create @farm.js/app@beta my-app --template auth --typescript
24
24
  cd my-app
25
25
  pnpm dev
26
26
  ```
@@ -11,8 +11,8 @@
11
11
  "type-check": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@farm.js/auth": "0.1.0-beta.75",
15
- "@farm.js/core": "0.1.0-beta.75",
14
+ "@farm.js/auth": "0.1.0-beta.77",
15
+ "@farm.js/core": "0.1.0-beta.77",
16
16
  "@farming-labs/docs": "0.2.111",
17
17
  "@farming-labs/farmjs": "0.2.111",
18
18
  "@farming-labs/theme": "0.2.111",
@@ -23,7 +23,7 @@
23
23
  "react-dom": "^19.0.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@farm.js/cli": "0.1.0-beta.75",
26
+ "@farm.js/cli": "0.1.0-beta.77",
27
27
  "@types/node": "20.19.9",
28
28
  "@types/react": "^19.0.0",
29
29
  "@types/react-dom": "^19.0.0",
@@ -9,7 +9,7 @@
9
9
  "type-check": "tsc --noEmit"
10
10
  },
11
11
  "dependencies": {
12
- "@farm.js/core": "0.1.0-beta.75",
12
+ "@farm.js/core": "0.1.0-beta.77",
13
13
  "@farming-labs/docs": "0.2.111",
14
14
  "@farming-labs/farmjs": "0.2.111",
15
15
  "@farming-labs/theme": "0.2.111",
@@ -19,7 +19,7 @@
19
19
  "react-dom": "^19.0.0"
20
20
  },
21
21
  "devDependencies": {
22
- "@farm.js/cli": "0.1.0-beta.75",
22
+ "@farm.js/cli": "0.1.0-beta.77",
23
23
  "@types/react": "^19.0.0",
24
24
  "@types/react-dom": "^19.0.0",
25
25
  "tailwindcss": "^4.0.0",
@@ -19,7 +19,7 @@ This project was generated from the Better Auth template included with `@farm.js
19
19
  ## Quick start
20
20
 
21
21
  ```bash
22
- pnpm create @farm.js/app@beta my-app --template better-auth --renderer solid --typescript
22
+ pnpm --config.minimumReleaseAge=0 create @farm.js/app@beta my-app --template better-auth --renderer solid --typescript
23
23
  cd my-app
24
24
  cp .env.example .env.local
25
25
  ```
@@ -10,8 +10,8 @@
10
10
  "type-check": "tsc --noEmit"
11
11
  },
12
12
  "dependencies": {
13
- "@farm.js/better-auth": "0.1.0-beta.75",
14
- "@farm.js/core": "0.1.0-beta.75",
13
+ "@farm.js/better-auth": "0.1.0-beta.77",
14
+ "@farm.js/core": "0.1.0-beta.77",
15
15
  "@farming-labs/docs": "0.2.111",
16
16
  "@farming-labs/farmjs": "0.2.111",
17
17
  "@farming-labs/theme": "0.2.111",
@@ -24,7 +24,7 @@
24
24
  "react-dom": "^19.0.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@farm.js/cli": "0.1.0-beta.75",
27
+ "@farm.js/cli": "0.1.0-beta.77",
28
28
  "@types/node": "20.19.9",
29
29
  "@types/pg": "8.20.0",
30
30
  "@types/react": "^19.0.0",
@@ -10,7 +10,7 @@ update beside ordinary React reconciliation.
10
10
  ## Create this starter
11
11
 
12
12
  ```bash
13
- pnpm create @farm.js/app@beta my-compiler-app --template react-compiler --typescript
13
+ pnpm --config.minimumReleaseAge=0 create @farm.js/app@beta my-compiler-app --template react-compiler --typescript
14
14
  cd my-compiler-app
15
15
  pnpm dev
16
16
  ```
@@ -11,8 +11,8 @@
11
11
  "type-check": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@farm.js/core": "0.1.0-beta.75",
15
- "@farm.js/react": "0.1.0-beta.7",
14
+ "@farm.js/core": "0.1.0-beta.77",
15
+ "@farm.js/react": "0.1.0-beta.8",
16
16
  "@farming-labs/docs": "0.2.111",
17
17
  "@farming-labs/farmjs": "0.2.111",
18
18
  "@farming-labs/theme": "0.2.111",
@@ -22,7 +22,7 @@
22
22
  "react-dom": "19.2.8"
23
23
  },
24
24
  "devDependencies": {
25
- "@farm.js/cli": "0.1.0-beta.75",
25
+ "@farm.js/cli": "0.1.0-beta.77",
26
26
  "@playwright/test": "^1.52.0",
27
27
  "@types/react": "^19.0.0",
28
28
  "@types/react-dom": "^19.0.0",