@farm.js/create-app 0.1.0-beta.95 → 0.1.0-beta.97

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
@@ -11,7 +11,9 @@ pnpm dev
11
11
  ```
12
12
 
13
13
  The scaffolder installs FARMJS, React by default, TypeScript, and the other starter dependencies
14
- automatically. The command explicitly selects the minimal Basic starter. Use `pnpm create`, not
14
+ automatically. Every starter also registers the official
15
+ [`@farm.js/devtools`](https://farmjs.dev/docs/plugins/devtools) workspace, available at
16
+ `/__farm/devtools` (or `Command/Ctrl + Shift + .`) during `pnpm dev`. The command explicitly selects the minimal Basic starter. Use `pnpm create`, not
15
17
  `pnpm add`; pnpm resolves this initializer command to the published `@farm.js/create-app` package.
16
18
  The command scopes `minimumReleaseAge=0` to the initializer so pnpm 11 can resolve a beta published
17
19
  within the last 24 hours. Pass `--skip-install` when you only want to generate the project files.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farm.js/create-app",
3
- "version": "0.1.0-beta.95",
3
+ "version": "0.1.0-beta.97",
4
4
  "description": "Create a new FARMJS application",
5
5
  "keywords": [
6
6
  "@farm.js/create-app",
@@ -1,9 +1,11 @@
1
1
  import { betterAuth } from "@farm.js/better-auth";
2
2
  import { defineConfig } from "@farm.js/core/config";
3
+ import { devtools } from "@farm.js/devtools";
3
4
  import { preact } from "@farm.js/preact";
4
5
  import { auth } from "./src/lib/auth.ts";
5
6
 
6
7
  export default defineConfig({
8
+ plugins: [devtools()],
7
9
  renderer: preact(),
8
10
  theme: {
9
11
  default: "dark",
@@ -1,9 +1,11 @@
1
1
  import { betterAuth } from "@farm.js/better-auth";
2
2
  import { defineConfig } from "@farm.js/core/config";
3
+ import { devtools } from "@farm.js/devtools";
3
4
  import { solid } from "@farm.js/solid";
4
5
  import { auth } from "./src/lib/auth.ts";
5
6
 
6
7
  export default defineConfig({
8
+ plugins: [devtools()],
7
9
  renderer: solid(),
8
10
  theme: {
9
11
  default: "dark",
@@ -1,9 +1,11 @@
1
1
  import { betterAuth } from "@farm.js/better-auth";
2
2
  import { defineConfig } from "@farm.js/core/config";
3
+ import { devtools } from "@farm.js/devtools";
3
4
  import { svelte } from "@farm.js/svelte";
4
5
  import { auth } from "./src/lib/auth.ts";
5
6
 
6
7
  export default defineConfig({
8
+ plugins: [devtools()],
7
9
  renderer: svelte(),
8
10
  theme: {
9
11
  default: "dark",
@@ -1,9 +1,11 @@
1
1
  import { betterAuth } from "@farm.js/better-auth";
2
2
  import { defineConfig } from "@farm.js/core/config";
3
+ import { devtools } from "@farm.js/devtools";
3
4
  import { vue } from "@farm.js/vue";
4
5
  import { auth } from "./src/lib/auth.ts";
5
6
 
6
7
  export default defineConfig({
8
+ plugins: [devtools()],
7
9
  renderer: vue(),
8
10
  theme: {
9
11
  default: "dark",
@@ -1,7 +1,9 @@
1
1
  import { defineConfig } from "@farm.js/core/config";
2
+ import { devtools } from "@farm.js/devtools";
2
3
  import { preact } from "@farm.js/preact";
3
4
 
4
5
  export default defineConfig({
6
+ plugins: [devtools()],
5
7
  renderer: preact(),
6
8
  theme: {
7
9
  default: "dark",
@@ -10,7 +10,7 @@
10
10
  "type-check": "tsc --noEmit"
11
11
  },
12
12
  "dependencies": {
13
- "@farm.js/core": "0.1.0-beta.95",
13
+ "@farm.js/core": "0.1.0-beta.97",
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,8 @@
18
18
  "zod": "4.1.12"
19
19
  },
20
20
  "devDependencies": {
21
- "@farm.js/cli": "0.1.0-beta.95",
21
+ "@farm.js/cli": "0.1.0-beta.97",
22
+ "@farm.js/devtools": "0.1.0-beta.0",
22
23
  "tailwindcss": "^4.0.0",
23
24
  "typescript": "^5.3.3"
24
25
  },
@@ -1,7 +1,9 @@
1
1
  import { defineConfig } from "@farm.js/core/config";
2
+ import { devtools } from "@farm.js/devtools";
2
3
  import { solid } from "@farm.js/solid";
3
4
 
4
5
  export default defineConfig({
6
+ plugins: [devtools()],
5
7
  renderer: solid(),
6
8
  theme: {
7
9
  default: "dark",
@@ -9,7 +9,7 @@
9
9
  "type-check": "tsc --noEmit"
10
10
  },
11
11
  "dependencies": {
12
- "@farm.js/core": "0.1.0-beta.95",
12
+ "@farm.js/core": "0.1.0-beta.97",
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,8 @@
17
17
  "zod": "4.1.12"
18
18
  },
19
19
  "devDependencies": {
20
- "@farm.js/cli": "0.1.0-beta.95",
20
+ "@farm.js/cli": "0.1.0-beta.97",
21
+ "@farm.js/devtools": "0.1.0-beta.0",
21
22
  "tailwindcss": "^4.0.0",
22
23
  "typescript": "^5.3.3"
23
24
  },
@@ -1,7 +1,9 @@
1
1
  import { defineConfig } from "@farm.js/core/config";
2
+ import { devtools } from "@farm.js/devtools";
2
3
  import { svelte } from "@farm.js/svelte";
3
4
 
4
5
  export default defineConfig({
6
+ plugins: [devtools()],
5
7
  renderer: svelte(),
6
8
  theme: {
7
9
  default: "dark",
@@ -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.95",
14
+ "@farm.js/core": "0.1.0-beta.97",
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,8 @@
19
19
  "zod": "4.1.12"
20
20
  },
21
21
  "devDependencies": {
22
- "@farm.js/cli": "0.1.0-beta.95",
22
+ "@farm.js/cli": "0.1.0-beta.97",
23
+ "@farm.js/devtools": "0.1.0-beta.0",
23
24
  "svelte-check": "4.7.5",
24
25
  "tailwindcss": "^4.0.0",
25
26
  "typescript": "^5.3.3"
@@ -1,7 +1,9 @@
1
1
  import { defineConfig } from "@farm.js/core/config";
2
+ import { devtools } from "@farm.js/devtools";
2
3
  import { vue } from "@farm.js/vue";
3
4
 
4
5
  export default defineConfig({
6
+ plugins: [devtools()],
5
7
  renderer: vue(),
6
8
  theme: {
7
9
  default: "dark",
@@ -9,7 +9,7 @@
9
9
  "type-check": "vue-tsc --noEmit"
10
10
  },
11
11
  "dependencies": {
12
- "@farm.js/core": "0.1.0-beta.95",
12
+ "@farm.js/core": "0.1.0-beta.97",
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,8 @@
17
17
  "zod": "4.1.12"
18
18
  },
19
19
  "devDependencies": {
20
- "@farm.js/cli": "0.1.0-beta.95",
20
+ "@farm.js/cli": "0.1.0-beta.97",
21
+ "@farm.js/devtools": "0.1.0-beta.0",
21
22
  "tailwindcss": "^4.0.0",
22
23
  "typescript": "^5.3.3",
23
24
  "vue-tsc": "3.3.9"
@@ -1,6 +1,8 @@
1
1
  import { defineConfig } from "@farm.js/core";
2
+ import { devtools } from "@farm.js/devtools";
2
3
 
3
4
  export default defineConfig({
5
+ plugins: [devtools()],
4
6
  auth: true,
5
7
  theme: {
6
8
  default: "dark",
@@ -11,8 +11,8 @@
11
11
  "type-check": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@farm.js/auth": "0.1.0-beta.95",
15
- "@farm.js/core": "0.1.0-beta.95",
14
+ "@farm.js/auth": "0.1.0-beta.97",
15
+ "@farm.js/core": "0.1.0-beta.97",
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,8 @@
23
23
  "react-dom": "^19.0.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@farm.js/cli": "0.1.0-beta.95",
26
+ "@farm.js/cli": "0.1.0-beta.97",
27
+ "@farm.js/devtools": "0.1.0-beta.0",
27
28
  "@types/node": "22.20.1",
28
29
  "@types/react": "^19.0.0",
29
30
  "@types/react-dom": "^19.0.0",
@@ -1,6 +1,8 @@
1
1
  import { defineConfig } from "@farm.js/core";
2
+ import { devtools } from "@farm.js/devtools";
2
3
 
3
4
  export default defineConfig({
5
+ plugins: [devtools()],
4
6
  theme: {
5
7
  default: "dark",
6
8
  },
@@ -9,7 +9,7 @@
9
9
  "type-check": "tsc --noEmit"
10
10
  },
11
11
  "dependencies": {
12
- "@farm.js/core": "0.1.0-beta.95",
12
+ "@farm.js/core": "0.1.0-beta.97",
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,8 @@
19
19
  "react-dom": "^19.0.0"
20
20
  },
21
21
  "devDependencies": {
22
- "@farm.js/cli": "0.1.0-beta.95",
22
+ "@farm.js/cli": "0.1.0-beta.97",
23
+ "@farm.js/devtools": "0.1.0-beta.0",
23
24
  "@types/react": "^19.0.0",
24
25
  "@types/react-dom": "^19.0.0",
25
26
  "tailwindcss": "^4.0.0",
@@ -1,8 +1,10 @@
1
1
  import { defineConfig } from "@farm.js/core";
2
+ import { devtools } from "@farm.js/devtools";
2
3
  import { betterAuth } from "@farm.js/better-auth";
3
4
  import { auth } from "./src/lib/auth.ts";
4
5
 
5
6
  export default defineConfig({
7
+ plugins: [devtools()],
6
8
  srcDir: "src",
7
9
  theme: {
8
10
  default: "dark",
@@ -11,8 +11,8 @@
11
11
  "type-check": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@farm.js/better-auth": "0.1.0-beta.95",
15
- "@farm.js/core": "0.1.0-beta.95",
14
+ "@farm.js/better-auth": "0.1.0-beta.97",
15
+ "@farm.js/core": "0.1.0-beta.97",
16
16
  "@farming-labs/docs": "0.2.111",
17
17
  "@farming-labs/farmjs": "0.2.111",
18
18
  "@farming-labs/theme": "0.2.111",
@@ -25,7 +25,8 @@
25
25
  "react-dom": "^19.0.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@farm.js/cli": "0.1.0-beta.95",
28
+ "@farm.js/cli": "0.1.0-beta.97",
29
+ "@farm.js/devtools": "0.1.0-beta.0",
29
30
  "@types/node": "22.20.1",
30
31
  "@types/pg": "8.20.0",
31
32
  "@types/react": "^19.0.0",
@@ -1,9 +1,11 @@
1
1
  import { defineConfig } from "@farm.js/core";
2
+ import { devtools } from "@farm.js/devtools";
2
3
  import { react } from "@farm.js/react";
3
4
 
4
5
  const compilerEnabled = process.env.FARM_REACT_COMPILER !== "false";
5
6
 
6
7
  export default defineConfig({
8
+ plugins: [devtools()],
7
9
  env: {
8
10
  public: {
9
11
  FARM_REACT_COMPILER_ENABLED: () => compilerEnabled,
@@ -11,8 +11,8 @@
11
11
  "type-check": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@farm.js/core": "0.1.0-beta.95",
15
- "@farm.js/react": "0.1.0-beta.9",
14
+ "@farm.js/core": "0.1.0-beta.97",
15
+ "@farm.js/react": "0.1.0-beta.10",
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,8 @@
22
22
  "react-dom": "19.2.8"
23
23
  },
24
24
  "devDependencies": {
25
- "@farm.js/cli": "0.1.0-beta.95",
25
+ "@farm.js/cli": "0.1.0-beta.97",
26
+ "@farm.js/devtools": "0.1.0-beta.0",
26
27
  "@playwright/test": "^1.52.0",
27
28
  "@types/react": "^19.0.0",
28
29
  "@types/react-dom": "^19.0.0",