@effect-app/cli 2.1.0-beta.33 → 2.1.0-beta.34

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @effect-app/cli
2
2
 
3
+ ## 2.1.0-beta.34
4
+
5
+ ### Patch Changes
6
+
7
+ - a354345: Move release tsconfig flattening from publish to pack lifecycle so package configs are restored before registry upload/auth can fail.
8
+ - a69da09: Publish from generated staging directories so release-only files are created outside the source package tree.
9
+
3
10
  ## 2.1.0-beta.33
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-app/cli",
3
- "version": "2.1.0-beta.33",
3
+ "version": "2.1.0-beta.34",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "bin": {
@@ -91,7 +91,6 @@
91
91
  "test:run": "pnpm run test run --passWithNoTests",
92
92
  "testsuite": "pnpm lint && pnpm circular && pnpm run test:run",
93
93
  "ncu": "ncu",
94
- "pub": "pnpm prepublish && npm publish --access public",
95
- "prepublish": "cp -f ./tsconfig.json ./tsconfig.json.bak && node ../../scripts/mergeTsConfig.mjs ./tsconfig.json"
94
+ "pub": "npm publish --access public"
96
95
  }
97
96
  }
package/tsconfig.json.bak DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "compilerOptions": {
4
- "lib": [
5
- "esnext"
6
- ],
7
- "moduleResolution": "Node16",
8
- "outDir": "./dist",
9
- "rootDir": "./src",
10
- "tsBuildInfoFile": "./dist/.tsbuildinfo"
11
- },
12
- "include": [
13
- "./src/**/*.ts"
14
- ],
15
- "references": []
16
- }