Skip to content

Commit

Permalink
chore@small
Browse files Browse the repository at this point in the history
  • Loading branch information
selfrefactor committed Aug 23, 2024
1 parent 5d2df20 commit 0cef6ac
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 13 deletions.
16 changes: 12 additions & 4 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7718,7 +7718,7 @@ export function lens(getter, setter){
<summary><strong>TypeScript</strong> test</summary>
```typescript
import {lens, assoc, lensProp, view, lensIndex, over, lensPath} from 'ramda'
import {lens, assoc, lensProp, view, lensIndex, over, lensPath} from 'rambda'

interface Input {
foo: string,
Expand Down Expand Up @@ -18574,6 +18574,14 @@ describe('R.zipWith', () => {
## ❯ CHANGELOG
9.3.0
- Breaking change in relation to TS typings of `R.assoc`, `R.dissoc` and `R.modify` - https://github.com/ramda/types/pull/37
- Add `R.isNotEmpty` as it is new method in `Ramda`
- Fix `R.head`/`R.last` TS definition - It returns `undefined` if array has length of 0. Before
9.2.1
- Broken `Deno` build - [Issue #731](https://github.com/selfrefactor/rambda/issues/731)
Expand Down Expand Up @@ -18998,11 +19006,11 @@ Fix wrong versions in changelog

> Links to Rambda

- [https://github.com/stoeffel/awesome-fp-js](awesome-fp-js)
- [awesome-fp-js](https://github.com/stoeffel/awesome-fp-js)

- [ https://mailchi.mp/webtoolsweekly/web-tools-280 ]( Web Tools Weekly #280 )
- [Web Tools Weekly #280](https://mailchi.mp/webtoolsweekly/web-tools-280)

- [https://github.com/docsifyjs/awesome-docsify](awesome-docsify)
- [awesome-docsify](https://github.com/docsifyjs/awesome-docsify)

> Deprecated from `Used by` section

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
9.3.0

- Breaking change in relation to TS typings of `R.assoc`, `R.dissoc` and `R.modify` - https://github.com/ramda/types/pull/37

- Add `R.isNotEmpty` as it is new method in `Ramda`

- Fix `R.head`/`R.last` TS definition - It returns `undefined` if array has length of 0. Before

9.2.1

- Broken `Deno` build - [Issue #731](https://github.com/selfrefactor/rambda/issues/731)
Expand Down
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7263,7 +7263,7 @@ export function lens(getter, setter){
<summary><strong>TypeScript</strong> test</summary>

```typescript
import {lens, assoc, lensProp, view, lensIndex, over, lensPath} from 'ramda'
import {lens, assoc, lensProp, view, lensIndex, over, lensPath} from 'rambda'

interface Input {
foo: string,
Expand Down Expand Up @@ -17264,6 +17264,14 @@ describe('R.zipWith', () => {

## ❯ CHANGELOG

9.3.0

- Breaking change in relation to TS typings of `R.assoc`, `R.dissoc` and `R.modify` - https://github.com/ramda/types/pull/37

- Add `R.isNotEmpty` as it is new method in `Ramda`

- Fix `R.head`/`R.last` TS definition - It returns `undefined` if array has length of 0. Before

9.2.1

- Broken `Deno` build - [Issue #731](https://github.com/selfrefactor/rambda/issues/731)
Expand Down Expand Up @@ -17688,11 +17696,11 @@ Fix wrong versions in changelog

> Links to Rambda

- [https://github.com/stoeffel/awesome-fp-js](awesome-fp-js)
- [awesome-fp-js](https://github.com/stoeffel/awesome-fp-js)

- [ https://mailchi.mp/webtoolsweekly/web-tools-280 ]( Web Tools Weekly #280 )
- [Web Tools Weekly #280](https://mailchi.mp/webtoolsweekly/web-tools-280)

- [https://github.com/docsifyjs/awesome-docsify](awesome-docsify)
- [awesome-docsify](https://github.com/docsifyjs/awesome-docsify)

> Deprecated from `Used by` section

Expand Down
16 changes: 12 additions & 4 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7263,7 +7263,7 @@ export function lens(getter, setter){
<summary><strong>TypeScript</strong> test</summary>

```typescript
import {lens, assoc, lensProp, view, lensIndex, over, lensPath} from 'ramda'
import {lens, assoc, lensProp, view, lensIndex, over, lensPath} from 'rambda'

interface Input {
foo: string,
Expand Down Expand Up @@ -17264,6 +17264,14 @@ describe('R.zipWith', () => {

## ❯ CHANGELOG

9.3.0

- Breaking change in relation to TS typings of `R.assoc`, `R.dissoc` and `R.modify` - https://github.com/ramda/types/pull/37

- Add `R.isNotEmpty` as it is new method in `Ramda`

- Fix `R.head`/`R.last` TS definition - It returns `undefined` if array has length of 0. Before

9.2.1

- Broken `Deno` build - [Issue #731](https://github.com/selfrefactor/rambda/issues/731)
Expand Down Expand Up @@ -17688,11 +17696,11 @@ Fix wrong versions in changelog

> Links to Rambda

- [https://github.com/stoeffel/awesome-fp-js](awesome-fp-js)
- [awesome-fp-js](https://github.com/stoeffel/awesome-fp-js)

- [ https://mailchi.mp/webtoolsweekly/web-tools-280 ]( Web Tools Weekly #280 )
- [Web Tools Weekly #280](https://mailchi.mp/webtoolsweekly/web-tools-280)

- [https://github.com/docsifyjs/awesome-docsify](awesome-docsify)
- [awesome-docsify](https://github.com/docsifyjs/awesome-docsify)

> Deprecated from `Used by` section

Expand Down
2 changes: 1 addition & 1 deletion source/lens-spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {lens, assoc, lensProp, view, lensIndex, over, lensPath} from 'ramda'
import {lens, assoc, lensProp, view, lensIndex, over, lensPath} from 'rambda'

interface Input {
foo: string,
Expand Down

0 comments on commit 0cef6ac

Please sign in to comment.