You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* refactor: Simplify GistCacheEntry structure and enhance company-specific cache handling
* feat: Improve multi-tenant handling with support for multiple environments and distinct caches
Copy file name to clipboardExpand all lines: wiki/effect‐app‐cli.md
+14-13Lines changed: 14 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Effect-App CLI (`pnpm effa`)
2
2
3
-
A modern, type-safe CLI for managing Effect-App projects, built with **Effect-TS** for maximum reliability and composability.
3
+
A modern, type-safe CLI for managing Effect-App projects, built with **Effect-TS** for maximum reliability and composability.
4
4
5
5
## Installation
6
6
@@ -61,7 +61,7 @@ pnpm effa up
61
61
-`@effect-atom/*` - Effect Atom packages
62
62
-`effect-app` - Core Effect-App package
63
63
-`@effect-app/*` - All Effect-App packages
64
-
-Plus any packages listed in `.ncurc.json` reject configuration
64
+
-Any packages listed in `.ncurc.json` reject configuration
65
65
66
66
**What it does:**
67
67
1. Reads existing `.ncurc.json` to preserve configured reject patterns
@@ -110,12 +110,12 @@ pnpm effa index-multi
110
110
111
111
**What it monitors:**
112
112
- Directory: `./api/src`
113
-
- Files with `.controllers.` pattern
114
-
- Files `controllers.ts` and `routes.ts`
113
+
- Files with `.controllers.` pattern in the name
114
+
- Files named `controllers.ts` and `routes.ts`
115
115
116
116
**What it does:**
117
-
1.**Controller monitoring**: when a `.controllers.` file changes, searches for `controllers.ts` or `routes.ts` in parent directories and fixes them with eslint
118
-
2.**Root monitoring**: when any file changes, fixes `index.ts` in the root directory
117
+
1.**Controller monitoring**: When a `.controllers.` file changes, searches for `controllers.ts` or `routes.ts` in parent directories and fixes them with eslint
118
+
2.**Root monitoring**: When any file changes, fixes `index.ts` in the root directory
0 commit comments