@effect-app/vue 0.67.4 → 0.68.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 0.68.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a644e7b5]
8
+ - @effect-app/prelude@0.75.1
9
+ - @effect-app/schema@0.67.1
10
+ - @effect-app/vue@0.68.1
11
+
12
+ ## 0.68.0
13
+
14
+ ### Minor Changes
15
+
16
+ - 6c180253: cleanup
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [6c180253]
21
+ - @effect-app/prelude@0.75.0
22
+ - @effect-app/schema@0.67.0
23
+ - @effect-app/core@0.73.0
24
+ - @effect-app/vue@0.68.0
25
+
3
26
  ## 0.67.4
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.67.4",
3
+ "version": "0.68.1",
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.74.4",
15
- "@effect-app/vue": "0.67.4",
16
- "@effect-app/schema": "0.66.0",
17
- "@effect-app/core": "0.72.1"
14
+ "@effect-app/prelude": "0.75.1",
15
+ "@effect-app/core": "0.73.0",
16
+ "@effect-app/schema": "0.67.1",
17
+ "@effect-app/vue": "0.68.1"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@rollup/pluginutils": "^5.0.5",
@@ -25,7 +25,7 @@
25
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.36.1"
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 && node ../../scripts/package.js && NODE_OPTIONS=--max-old-space-size=6144 tsc --build",
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",