Skip to content

Commit

Permalink
update effect
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart committed Sep 20, 2024
1 parent f5a8798 commit f1e50fa
Show file tree
Hide file tree
Showing 8 changed files with 5,654 additions and 5,450 deletions.
5 changes: 5 additions & 0 deletions .changeset/nervous-emus-tickle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@fp-ts/optic": minor
---

update effect
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use flake
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ tmp/
build/
dist/
tmp/
.direnv/
27 changes: 27 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs = {nixpkgs, ...}: let
forAllSystems = function:
nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed
(system: function nixpkgs.legacyPackages.${system});
in {
formatter = forAllSystems (pkgs: pkgs.alejandra);
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
packages = with pkgs; [
corepack
nodejs
];
};
});
};
}
69 changes: 35 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"access": "public",
"directory": "dist"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/fp-ts/optic.git"
Expand Down Expand Up @@ -64,50 +65,50 @@
"global": []
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@effect-ts/build-utils": "0.40.7",
"@effect-ts/core": "^0.60.5",
"@effect/docgen": "0.4.3",
"@effect/dtslint": "0.1.0",
"@effect/typeclass": "^0.24.0",
"@effect/docgen": "0.4.4",
"@effect/dtslint": "0.1.1",
"@effect/typeclass": "^0.27.2",
"@repo-tooling/eslint-plugin-dprint": "^0.0.4",
"@types/benchmark": "^2.1.2",
"@types/benchmark": "^2.1.5",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitest/coverage-v8": "^1.5.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/rimraf": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@vitest/coverage-v8": "^2.1.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"concurrently": "^8.0.1",
"concurrently": "^9.0.1",
"cpx": "^1.5.0",
"effect": "^3.0.0",
"effect": "^3.8.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-codegen": "^0.28.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"fast-check": "^3.8.0",
"glob": "^9.3.4",
"madge": "^7.0.0",
"picocolors": "^1.0.0",
"prettier": "^3.2.5",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-codegen": "^0.29.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"fast-check": "^3.22.0",
"glob": "^11.0.0",
"madge": "^8.0.0",
"picocolors": "^1.1.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"ultra-runner": "^3.10.5",
"vite": "^5.2.9",
"vitest": "^1.5.0"
"vite": "^5.4.6",
"vitest": "^2.1.1"
},
"peerDependencies": {
"@effect/typeclass": "^0.24.0",
"effect": "^3.0.0"
"effect": "^3.8.0"
}
}
Loading

0 comments on commit f1e50fa

Please sign in to comment.