@effect-app/vue 2.55.2 → 2.55.5
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/CHANGELOG.md +23 -0
- package/dist/experimental/commander.d.ts +1 -1
- package/eslint.config.mjs +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @effect-app/vue
|
|
2
2
|
|
|
3
|
+
## 2.55.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [f9aee77]
|
|
8
|
+
- effect-app@3.3.4
|
|
9
|
+
|
|
10
|
+
## 2.55.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- f6a3328: export base eslint files so that we import them in projects
|
|
15
|
+
- Updated dependencies [f6a3328]
|
|
16
|
+
- effect-app@3.3.3
|
|
17
|
+
|
|
18
|
+
## 2.55.3
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- f5da9d0: update packages
|
|
23
|
+
- Updated dependencies [f5da9d0]
|
|
24
|
+
- effect-app@3.3.2
|
|
25
|
+
|
|
3
26
|
## 2.55.2
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -155,7 +155,7 @@ declare const Commander_base: Effect.Service.Class<Commander, "Commander", {
|
|
|
155
155
|
*/
|
|
156
156
|
fn: <RT>(runtime: Runtime.Runtime<RT>) => (actionName: string) => Commander.Gen<RT> & Commander.NonGen<RT>;
|
|
157
157
|
alt: <RT>(runtime: Runtime.Runtime<RT>) => (actionName: string) => <Args extends Array<any>, A, E, R extends RT | CommandContext>(handler: (...args: Args) => Effect.Effect<A, E, R>) => Commander.CommandOut<Args, A, E>;
|
|
158
|
-
}, never,
|
|
158
|
+
}, never, I18n | Confirm | WithToast>;
|
|
159
159
|
}>;
|
|
160
160
|
export declare class Commander extends Commander_base {
|
|
161
161
|
}
|
package/eslint.config.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import path from "node:path"
|
|
2
2
|
import { fileURLToPath } from "node:url"
|
|
3
|
-
import { augmentedConfig } from "
|
|
3
|
+
import { augmentedConfig } from "effect-app/eslint.base.config"
|
|
4
4
|
|
|
5
5
|
const __filename = fileURLToPath(import.meta.url)
|
|
6
6
|
const __dirname = path.dirname(__filename)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/vue",
|
|
3
|
-
"version": "2.55.
|
|
3
|
+
"version": "2.55.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/effect-ts-app/libs/tree/main/packages/vue",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"@tanstack/vue-query": "5.83.1",
|
|
11
11
|
"@vueuse/core": "^13.9.0",
|
|
12
12
|
"query-string": "^9.2.2",
|
|
13
|
-
"effect-app": "3.3.
|
|
13
|
+
"effect-app": "3.3.4"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@effect-atom/atom": "^0.1.
|
|
17
|
-
"@effect-atom/atom-vue": "^0.1.
|
|
18
|
-
"@effect/platform": "^0.90.
|
|
16
|
+
"@effect-atom/atom": "^0.1.21",
|
|
17
|
+
"@effect-atom/atom-vue": "^0.1.19",
|
|
18
|
+
"@effect/platform": "^0.90.7",
|
|
19
19
|
"@effect/platform-browser": "^0.70.0",
|
|
20
|
-
"@sentry/browser": "^10.
|
|
20
|
+
"@sentry/browser": "^10.10.0",
|
|
21
21
|
"effect": "^3.17.13",
|
|
22
22
|
"vue": "^3.5.21"
|
|
23
23
|
},
|