Files
effect-lens/packages/effect-lens-next/package.json
T
Thilawyn 753215c850
Publish / publish (push) Successful in 25s
Lint / lint (push) Successful in 20s
Upgrade Effect v4 beta compatibility and refresh package branding (#8)
# PR description

## Summary

- Upgrade the Effect v4 package from `4.0.0-beta.98` to `4.0.0-beta.101`.
- Bump `effect-lens-next` to `2.0.0-beta.101`.
- Normalize the v4 `LensImpl` and `ViewImpl` global symbol keys under the `@effect-lens` namespace.
- Upgrade the monorepo toolchain, including TypeScript 7, Turbo, Biome, the Effect language service, and npm-check-updates.
- Refresh the lockfile with the updated dependency graph.
- Add new wide and square Effect Lens SVG branding.
- Improve both npm README headers with:
  - The new square logo.
  - Package version, download, license, and Effect compatibility badges.
  - Clear warnings distinguishing the Effect v3 stable release from the Effect v4 beta.
- Include the square logo in both published npm packages.

## Validation

- TypeScript checks pass.
- Both SVG assets validate successfully.
- `npm pack --dry-run --ignore-scripts` succeeds for both packages.
- Both npm tarballs include their relative README logo assets.

---------

Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: #8
2026-07-27 01:25:47 +02:00

46 lines
1.0 KiB
JSON

{
"name": "effect-lens-next",
"description": "An effectful Lens type to easily manage nested state",
"version": "2.0.0-beta.101",
"type": "module",
"files": [
"./README.md",
"./logo-square.svg",
"./dist"
],
"license": "MIT",
"repository": {
"url": "git+https://github.com/Thiladev/effect-lens.git"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./Lens": {
"types": "./dist/Lens.d.ts",
"default": "./dist/Lens.js"
},
"./View": {
"types": "./dist/View.d.ts",
"default": "./dist/View.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint:tsc": "tsc --noEmit",
"lint:biome": "biome lint",
"pack": "npm pack",
"clean:cache": "rm -rf .turbo tsconfig.tsbuildinfo",
"clean:dist": "rm -rf dist",
"clean:modules": "rm -rf node_modules"
},
"peerDependencies": {
"effect": "4.0.0-beta.101"
},
"devDependencies": {
"effect": "4.0.0-beta.101"
}
}