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 11, 2023
1 parent 5c61bc3 commit a681ab6
Show file tree
Hide file tree
Showing 19 changed files with 134 additions and 123 deletions.
14 changes: 14 additions & 0 deletions .changeset/sixty-emus-shave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
"@effect-app/fluent-extensions": minor
"@effect-app/infra-adapters": minor
"@effect-app/pnpm-singleton": minor
"@effect-app/compiler": minor
"@effect-app/prelude": minor
"@effect-app/schema": minor
"@effect-app/infra": minor
"@effect-app/core": minor
"@effect-app/cli": minor
"@effect-app/vue": minor
---

update packages
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,6 @@
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"typescript-transform-paths": "^3.4.6",
"vite": "^5.0.7",
"vitest": "^1.0.2"
"vitest": "^1.0.4"
}
}
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"json5": "^2.2.3",
"ts-node": "^10.9.2",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"vitest": "^1.0.2"
"vitest": "^1.0.4"
},
"typesVersions": {
"*": {
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"json5": "^2.2.3",
"ts-node": "^10.9.2",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"vitest": "^1.0.2"
"vitest": "^1.0.4"
},
"typesVersions": {
"*": {
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"type": "module",
"dependencies": {
"@fp-ts/optic": "^0.19.0",
"@effect/platform": "^0.33.1",
"effect": "^2.0.0-next.59",
"@effect/platform": "^0.34.0",
"effect": "^2.0.0-next.60",
"cross-fetch": "^4.0.0",
"lodash": "^4.17.21",
"path-parser": "^6.1.0",
Expand All @@ -20,7 +20,7 @@
"@babel/cli": "^7.23.4",
"ts-toolbelt": "^9.6.0",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"vitest": "^1.0.2",
"vitest": "^1.0.4",
"winston": "^3.11.0"
},
"scripts": {
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.33.1",
"@effect/platform": "^0.34.0",
"@fp-ts/optic": "^0.19.0",
"date-fns": "^2.30.0",
"effect": "^2.0.0-next.59",
"effect": "^2.0.0-next.60",
"lodash": "^4.17.21",
"nanoid": "^5.0.4",
"path-parser": "^6.1.0",
Expand All @@ -28,7 +28,7 @@
"fast-check": "~3.14.0",
"ts-node": "^10.9.2",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"vitest": "^1.0.2"
"vitest": "^1.0.4"
},
"typesVersions": {
"*": {
Expand Down
4 changes: 2 additions & 2 deletions packages/infra-adapters/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"type": "module",
"dependencies": {
"@effect-app/core": "workspace:*",
"@effect/platform": "^0.33.1",
"@effect/platform": "^0.34.0",
"@effect-app/prelude": "workspace:*",
"@effect-app/schema": "workspace:*",
"effect": "^2.0.0-next.59",
"effect": "^2.0.0-next.60",
"@fp-ts/optic": "^0.19.0",
"query-string": "^8.1.0"
},
Expand Down
1 change: 0 additions & 1 deletion packages/infra/_src/services/Emailer/Sendgrid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ const makeLiveSendgrid = ({ apiKey, defaultFrom, defaultReplyTo, realMail, subje
*/
export function LiveSendgrid(config: Config<SendgridConfig>) {
return config
.config
.flatMap(makeLiveSendgrid)
.toLayer(Emailer)
}
Expand Down
2 changes: 1 addition & 1 deletion packages/infra/_src/services/Store/Cosmos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import type {
} from "./service.js"

export function CosmosStoreLive(config: Config<StorageConfig>) {
return config.config.flatMap(makeCosmosStore).toLayer(StoreMaker)
return config.flatMap(makeCosmosStore).toLayer(StoreMaker)
}

class CosmosDbOperationError {
Expand Down
1 change: 0 additions & 1 deletion packages/infra/_src/services/Store/Disk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ export function makeDiskStore({ prefix }: StorageConfig, dir: string) {

export function DiskStoreLive(config: Config<StorageConfig>, dir: string) {
return config
.config
.flatMap((_) => makeDiskStore(_, dir))
.toLayer(StoreMaker)
}
2 changes: 1 addition & 1 deletion packages/infra/_src/services/Store/Redis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ export function makeRedisStore({ prefix }: StorageConfig) {
})
}
export function RedisStoreLive(config: Config<StorageConfig>) {
return config.config.flatMap(makeRedisStore).toLayer(StoreMaker)
return config.flatMap(makeRedisStore).toLayer(StoreMaker)
}
1 change: 0 additions & 1 deletion packages/infra/_src/services/Store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import { StoreMaker } from "./service.js"
*/
export function StoreMakerLive(config: Config<StorageConfig>) {
return config
.config
.flatMap((cfg) => {
const storageUrl = cfg.url.value
if (storageUrl.startsWith("mem://")) {
Expand Down
4 changes: 2 additions & 2 deletions packages/infra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@effect-app/infra-adapters": "workspace:*",
"@effect-app/prelude": "workspace:*",
"@effect-app/schema": "workspace:*",
"effect": "^2.0.0-next.59",
"effect": "^2.0.0-next.60",
"@faker-js/faker": "^8.3.1",
"@sendgrid/helpers": "^8.0.0",
"@sendgrid/mail": "^8.1.0",
Expand Down Expand Up @@ -39,7 +39,7 @@
"redis": "^3.1.2",
"ts-node": "^10.9.2",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"vitest": "^1.0.2"
"vitest": "^1.0.4"
},
"peerDependencies": {
"express": "^4.18.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/pnpm-singleton/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@types/node": "~20.10.4",
"ts-node": "^10.9.2",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"vitest": "^1.0.2"
"vitest": "^1.0.4"
},
"typesVersions": {
"*": {
Expand Down
2 changes: 1 addition & 1 deletion packages/prelude/_src/client/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export interface ApiConfig {
}

const tag = Tag<ApiConfig>()
export const Live = (config: Config<ApiConfig>) => config.config.toLayer(tag)
export const Live = (config: Config<ApiConfig>) => config.toLayer(tag)
export const ApiConfig = {
Tag: tag,
Live
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.33.1",
"@effect/platform": "^0.34.0",
"@fp-ts/optic": "^0.19.0",
"date-fns": "^2.30.0",
"effect": "^2.0.0-next.59",
"effect": "^2.0.0-next.60",
"lodash": "^4.17.21",
"nanoid": "^5.0.4",
"path-parser": "^6.1.0",
Expand All @@ -28,7 +28,7 @@
"fast-check": "~3.14.0",
"ts-node": "^10.9.2",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"vitest": "^1.0.2"
"vitest": "^1.0.4"
},
"typesVersions": {
"*": {
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,7 +5,7 @@
"type": "module",
"dependencies": {
"@effect-app/core": "workspace:*",
"effect": "^2.0.0-next.59",
"effect": "^2.0.0-next.60",
"@fp-ts/optic": "^0.19.0",
"cross-fetch": "^4.0.0",
"lodash": "^4.17.21",
Expand All @@ -19,7 +19,7 @@
"fast-check": "~3.14.0",
"ts-toolbelt": "^9.6.0",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"vitest": "^1.0.2"
"vitest": "^1.0.4"
},
"scripts": {
"watch": "pnpm build:tsc -w",
Expand Down
6 changes: 3 additions & 3 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.21.1",
"@effect/platform-browser": "^0.22.0",
"@effect-app/prelude": "workspace:*",
"@effect-app/vue": "workspace:*",
"@effect-app/core": "workspace:*",
"@effect-app/schema": "workspace:*",
"@fp-ts/optic": "^0.19.0",
"@formatjs/intl": "^2.9.9",
"effect": "^2.0.0-next.59",
"effect": "^2.0.0-next.60",
"query-string": "^8.1.0",
"swrv": "^1.0.4",
"vue": "^3.3.11"
Expand All @@ -25,7 +25,7 @@
"ts-node": "^10.9.2",
"typescript": "npm:@effect-app/typescript@5.4.0-tsplus.202311222",
"vite": "^5.0.7",
"vitest": "^1.0.2"
"vitest": "^1.0.4"
},
"typesVersions": {
"*": {
Expand Down
Loading

0 comments on commit a681ab6

Please sign in to comment.