Skip to content

Commit

Permalink
chore: Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
patroza committed Oct 11, 2024
1 parent d83ff23 commit 1cd995d
Show file tree
Hide file tree
Showing 13 changed files with 80 additions and 16 deletions.
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @effect-app/core

## 1.15.7

### Patch Changes

- ngl

## 1.15.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/core",
"version": "1.15.6",
"version": "1.15.7",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/effect-ts-app/libs/tree/main/packages/core",
Expand Down
34 changes: 24 additions & 10 deletions packages/core/src/_ext/pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,30 @@ declare global {
interface Set<T> extends Pipeable {}
interface ReadonlySet<T> extends Pipeable {}
interface Date extends Pipeable {}
interface Iterable<T, TReturn = any, TNext = any> extends Pipeable {}
interface Iterator<T, TReturn = any, TNext = any> extends Pipeable {}
// interface Iterable<T, TReturn = any, TNext = any> extends Pipeable {}
// interface Iterator<T, TReturn = any, TNext = any> extends Pipeable {}
interface Function extends Pipeable {}
}

Object.defineProperty(Object.prototype, "pipe", {
enumerable: false,
configurable: true,
writable: true,
value(...args: any[]) {
return pipeArguments(this, args as any)
}
})
const prototypes = [
Number.prototype,
Boolean.prototype,
String.prototype,
Array.prototype,
Map.prototype,
Set.prototype,
Date.prototype,
Function.prototype
]

// Object makes problems with builtins like Stream pipe etc
prototypes.forEach((proto) =>
Object.defineProperty(proto, "pipe", {
enumerable: false,
configurable: true,
writable: true,
value(...args: any[]) {
return pipeArguments(this, args as any)
}
})
)
9 changes: 9 additions & 0 deletions packages/infra-adapters/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @effect-app/infra-adapters

## 1.17.7

### Patch Changes

- Updated dependencies
- @effect-app/core@1.15.7
- effect-app@1.26.7
- @effect-app/schema@1.17.7

## 1.17.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/infra-adapters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/infra-adapters",
"version": "1.17.6",
"version": "1.17.7",
"license": "MIT",
"type": "module",
"dependencies": {
Expand Down
10 changes: 10 additions & 0 deletions packages/infra/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @effect-app/infra

## 1.33.7

### Patch Changes

- Updated dependencies
- @effect-app/core@1.15.7
- @effect-app/infra-adapters@1.17.7
- effect-app@1.26.7
- @effect-app/schema@1.17.7

## 1.33.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/infra/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/infra",
"version": "1.33.6",
"version": "1.33.7",
"license": "MIT",
"type": "module",
"dependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/prelude/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @effect-app/prelude

## 1.26.7

### Patch Changes

- Updated dependencies
- @effect-app/core@1.15.7
- @effect-app/schema@1.17.7

## 1.26.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/prelude/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "effect-app",
"version": "1.26.6",
"version": "1.26.7",
"license": "MIT",
"type": "module",
"dependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/schema/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @effect-app/schema

## 1.17.7

### Patch Changes

- Updated dependencies
- @effect-app/core@1.15.7

## 1.17.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/schema",
"version": "1.17.6",
"version": "1.17.7",
"license": "MIT",
"type": "module",
"dependencies": {
Expand Down
10 changes: 10 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @effect-app/vue

## 1.20.7

### Patch Changes

- Updated dependencies
- @effect-app/core@1.15.7
- effect-app@1.26.7
- @effect-app/schema@1.17.7
- @effect-app/vue@1.20.7

## 1.20.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/vue",
"version": "1.20.6",
"version": "1.20.7",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/effect-ts-app/libs/tree/main/packages/vue",
Expand Down

0 comments on commit 1cd995d

Please sign in to comment.