effect-app 3.2.0 → 3.2.2

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 +12 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @effect-app/prelude
2
2
 
3
+ ## 3.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 33f100d: finalize new cli
8
+
9
+ ## 3.2.1
10
+
11
+ ### Patch Changes
12
+
13
+ - c12a49b: effect app cli to effect cli
14
+
3
15
  ## 3.2.0
4
16
 
5
17
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "effect-app",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "dependencies": {
@@ -292,8 +292,8 @@
292
292
  ],
293
293
  "scripts": {
294
294
  "watch": "pnpm build:tsc -w",
295
- "build:tsc": "pnpm clean-dist && effect-app-cli packagejson tsc --build",
296
- "build:tsc-src": "pnpm clean-dist && effect-app-cli packagejson tsc --build ./tsconfig.src.json",
295
+ "build:tsc": "pnpm clean-dist && effect-app-cli packagejson && tsc --build",
296
+ "build:tsc-src": "pnpm clean-dist && effect-app-cli packagejson && tsc --build ./tsconfig.src.json",
297
297
  "build:src": "pnpm build:tsc-src",
298
298
  "build": "pnpm build:tsc",
299
299
  "watch2": "pnpm clean-dist && NODE_OPTIONS=--max-old-space-size=6144 tsc -w",