@effect-app/vue 0.67.3 → 0.68.0
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/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @effect-app/vue
|
|
2
2
|
|
|
3
|
+
## 0.68.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6c180253: cleanup
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [6c180253]
|
|
12
|
+
- @effect-app/prelude@0.75.0
|
|
13
|
+
- @effect-app/schema@0.67.0
|
|
14
|
+
- @effect-app/core@0.73.0
|
|
15
|
+
- @effect-app/vue@0.68.0
|
|
16
|
+
|
|
17
|
+
## 0.67.4
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [f436ce54]
|
|
22
|
+
- @effect-app/schema@0.66.0
|
|
23
|
+
- @effect-app/prelude@0.74.4
|
|
24
|
+
- @effect-app/vue@0.67.4
|
|
25
|
+
|
|
3
26
|
## 0.67.3
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/vue",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.68.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"query-string": "^8.1.0",
|
|
12
12
|
"swrv": "^1.0.4",
|
|
13
13
|
"vue": "^3.3.8",
|
|
14
|
-
"@effect-app/prelude": "0.
|
|
15
|
-
"@effect-app/core": "0.
|
|
16
|
-
"@effect-app/
|
|
17
|
-
"@effect-app/
|
|
14
|
+
"@effect-app/prelude": "0.75.0",
|
|
15
|
+
"@effect-app/core": "0.73.0",
|
|
16
|
+
"@effect-app/vue": "0.68.0",
|
|
17
|
+
"@effect-app/schema": "0.67.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@rollup/pluginutils": "^5.0.5",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"@types/node": "~20.9.4",
|
|
23
23
|
"json5": "^2.2.3",
|
|
24
24
|
"ts-node": "^10.9.1",
|
|
25
|
-
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.
|
|
25
|
+
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
|
|
26
26
|
"vite": "^5.0.2",
|
|
27
27
|
"vitest": "^0.34.6",
|
|
28
|
-
"@effect-app/compiler": "0.
|
|
28
|
+
"@effect-app/compiler": "0.37.0"
|
|
29
29
|
},
|
|
30
30
|
"typesVersions": {
|
|
31
31
|
"*": {
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
],
|
|
118
118
|
"scripts": {
|
|
119
119
|
"watch": "pnpm build:tsc -w",
|
|
120
|
-
"build:tsc": "pnpm clean-dist &&
|
|
120
|
+
"build:tsc": "pnpm clean-dist && effect-app-cli packagejson tsc --build",
|
|
121
121
|
"build": "pnpm build:tsc && pnpm build2:cjs",
|
|
122
122
|
"build2:cjs": "rm -rf _cjs && babel dist --config-file ../../.babel.cjs.json --out-dir _cjs --out-file-extension .cjs --source-maps",
|
|
123
123
|
"watch2": "pnpm clean-dist && NODE_OPTIONS=--max-old-space-size=6144 tsc -w",
|