Skip to content

Commit

Permalink
housekeeping: update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
patroza committed Dec 6, 2023
1 parent 0ec79b7 commit ac36723
Show file tree
Hide file tree
Showing 13 changed files with 340 additions and 150 deletions.
12 changes: 12 additions & 0 deletions .changeset/eighty-ears-dress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
"@effect-app/fluent-extensions": minor
"@effect-app/infra-adapters": minor
"@effect-app/compiler": minor
"@effect-app/prelude": minor
"@effect-app/schema": minor
"@effect-app/infra": minor
"@effect-app/core": minor
"@effect-app/vue": minor
---

update dependencies
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"@effect/language-service@0.0.19": "patches/@effect__language-service@0.0.19.patch",
"@phaphoso/eslint-plugin-dprint@0.5.2": "patches/@phaphoso__eslint-plugin-dprint@0.5.2.patch",
"date-fns@2.29.3": "patches/date-fns@2.29.3.patch",
"@fp-ts/optic@0.17.0": "patches/@fp-ts__optic@0.17.0.patch",
"@typescript-eslint/scope-manager@6.13.2": "patches/@typescript-eslint__scope-manager@6.13.2.patch"
"@typescript-eslint/scope-manager@6.13.2": "patches/@typescript-eslint__scope-manager@6.13.2.patch",
"@fp-ts/optic@0.19.0": "patches/@fp-ts__optic@0.19.0.patch"
}
},
"scripts": {
Expand Down Expand Up @@ -100,7 +100,7 @@
"tsconfig-paths": "^4.2.0",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"typescript-transform-paths": "^3.4.6",
"vite": "^5.0.5",
"vite": "^5.0.6",
"vitest": "^1.0.1"
}
}
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"dependencies": {
"@rollup/pluginutils": "^5.1.0",
"vite": "^5.0.5"
"vite": "^5.0.6"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
Expand Down
10 changes: 5 additions & 5 deletions packages/core/_src/Array.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ export function toArray<A>(
}

/** @tsplus getter ReadonlyArray flatten */
export const flane: <A>(self: NonEmptyReadonlyArray<NonEmptyReadonlyArray<A>>) => NonEmptyArray<A> =
ReadonlyArray.flatten
export const flane: <A>(self: NonEmptyReadonlyArray<NonEmptyReadonlyArray<A>>) => NonEmptyArray<A> = ROArray.flatten

/** @tsplus getter ReadonlyArray flatten */
export const fla: <A>(self: ReadonlyArray<ReadonlyArray<A>>) => Array<A> = ReadonlyArray.flatten
export const fla: <A>(self: ReadonlyArray<ReadonlyArray<A>>) => Array<A> = ROArray.flatten

/** @tsplus pipeable ReadonlyArray sortBy */
export const sortByne: <B>(
...orders: ReadonlyArray<Order<B>>
) => <A extends B>(as: readonly [A, ...A[]]) => [A, ...A[]] = ReadonlyArray.sortBy
) => <A extends B>(as: readonly [A, ...A[]]) => [A, ...A[]] = ROArray.sortBy as any

/** @tsplus pipeable Iterable sortBy */
export const sortBy: <B>(...orders: readonly Order<B>[]) => <A extends B>(self: Iterable<A>) => A[] = ROArray.sortBy
export const sortBy: <B>(...orders: readonly Order<B>[]) => <A extends B>(self: Iterable<A>) => A[] = ROArray
.sortBy as any

/**
* Remove duplicates from an array, keeping the first occurrence of an element.
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"license": "MIT",
"type": "module",
"dependencies": {
"@fp-ts/optic": "^0.17.0",
"@effect/platform": "^0.32.2",
"effect": "^2.0.0-next.58",
"@fp-ts/optic": "^0.19.0",
"@effect/platform": "^0.33.0",
"effect": "^2.0.0-next.59",
"cross-fetch": "^4.0.0",
"lodash": "^4.17.21",
"path-parser": "^6.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/fluent-extensions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"dependencies": {
"@effect-app/core": "workspace:*",
"@effect-app/schema": "workspace:*",
"@effect/platform": "^0.32.2",
"@fp-ts/optic": "^0.17.0",
"@effect/platform": "^0.33.0",
"@fp-ts/optic": "^0.19.0",
"date-fns": "^2.30.0",
"effect": "^2.0.0-next.58",
"effect": "^2.0.0-next.59",
"lodash": "^4.17.21",
"nanoid": "^5.0.4",
"path-parser": "^6.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/infra-adapters/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"type": "module",
"dependencies": {
"@effect-app/core": "workspace:*",
"@effect/platform": "^0.32.2",
"@effect/platform": "^0.33.0",
"@effect-app/prelude": "workspace:*",
"@effect-app/schema": "workspace:*",
"effect": "^2.0.0-next.58",
"@fp-ts/optic": "^0.17.0",
"effect": "^2.0.0-next.59",
"@fp-ts/optic": "^0.19.0",
"query-string": "^8.1.0"
},
"devDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions packages/infra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"@effect-app/infra-adapters": "workspace:*",
"@effect-app/prelude": "workspace:*",
"@effect-app/schema": "workspace:*",
"effect": "^2.0.0-next.58",
"effect": "^2.0.0-next.59",
"@faker-js/faker": "^8.3.1",
"@sendgrid/helpers": "^7.7.0",
"@sendgrid/mail": "^7.7.0",
"change-case": "^5.2.0",
"@sendgrid/helpers": "^8.0.0",
"@sendgrid/mail": "^8.1.0",
"change-case": "^5.3.0",
"cross-fetch": "^4.0.0",
"fast-check": "~3.14.0",
"object-hash": "^3.0.0",
Expand All @@ -26,7 +26,7 @@
"devDependencies": {
"@babel/cli": "^7.23.4",
"@effect-app/compiler": "workspace:*",
"@sentry/node": "^7.84.0",
"@sentry/node": "^7.85.0",
"@types/express": "^4.17.21",
"@types/node": "~20.10.3",
"@types/proper-lockfile": "^4.1.4",
Expand Down
6 changes: 3 additions & 3 deletions packages/prelude/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"dependencies": {
"@effect-app/core": "workspace:*",
"@effect-app/schema": "workspace:*",
"@effect/platform": "^0.32.2",
"@fp-ts/optic": "^0.17.0",
"@effect/platform": "^0.33.0",
"@fp-ts/optic": "^0.19.0",
"date-fns": "^2.30.0",
"effect": "^2.0.0-next.58",
"effect": "^2.0.0-next.59",
"lodash": "^4.17.21",
"nanoid": "^5.0.4",
"path-parser": "^6.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"type": "module",
"dependencies": {
"@effect-app/core": "workspace:*",
"effect": "^2.0.0-next.58",
"@fp-ts/optic": "^0.17.0",
"effect": "^2.0.0-next.59",
"@fp-ts/optic": "^0.19.0",
"cross-fetch": "^4.0.0",
"lodash": "^4.17.21",
"path-parser": "^6.1.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"license": "MIT",
"type": "module",
"dependencies": {
"@effect/platform-browser": "^0.20.3",
"@effect/platform-browser": "^0.21.0",
"@effect-app/prelude": "workspace:*",
"@effect-app/vue": "workspace:*",
"@effect-app/core": "workspace:*",
"@effect-app/schema": "workspace:*",
"@fp-ts/optic": "^0.17.0",
"@fp-ts/optic": "^0.19.0",
"@formatjs/intl": "^2.9.9",
"effect": "^2.0.0-next.58",
"effect": "^2.0.0-next.59",
"query-string": "^8.1.0",
"swrv": "^1.0.4",
"vue": "^3.3.10"
Expand All @@ -24,7 +24,7 @@
"json5": "^2.2.3",
"ts-node": "^10.9.1",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"vite": "^5.0.5",
"vite": "^5.0.6",
"vitest": "^1.0.1"
},
"typesVersions": {
Expand Down
Loading

0 comments on commit ac36723

Please sign in to comment.