Skip to content

Commit 5ddf599

Browse files
authored
Wrong typings for R.equals, R.propEq (#804)
* chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * Fix R.includes * chore@small * d * chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * kata * 2 * 3 * chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * repl * chore@small * chore@small * chore@small * feat@fix filter * readonly on top * chore@small * union.with * chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * chore@small * 1 * R.mapchain * switcher * chore@small * 1 * 1 * chore@small * chore@small * chore@small * chore@small * 1 * split.every * merge.deep * 1 * Fix wrong TS * 1 * r.path * 1 * 1 * chore@small * remove dtslint * chore@small
1 parent 9d5a210 commit 5ddf599

137 files changed

Lines changed: 2584 additions & 4055 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.vscode/launch.json

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,21 @@
22
"version": "0.2.0",
33
"configurations": [
44
{
5-
"type": "node",
6-
"request": "launch",
7-
"name": "Test File(current)",
8-
"program": "${workspaceRoot}/node_modules/jest/bin/jest.js",
9-
"args": [
10-
"--verbose",
11-
"-i",
12-
"-u",
13-
"--no-cache",
14-
"${fileBasenameNoExtension}"
15-
],
16-
"console": "integratedTerminal",
17-
"internalConsoleOptions": "neverOpen"
18-
}
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Debug Test(spec or source)",
8+
"autoAttachChildProcesses": true,
9+
"skipFiles": [
10+
"<node_internals>/**",
11+
"**/node_modules/**"
12+
],
13+
"program": "${workspaceRoot}/node_modules/vitest/vitest.mjs",
14+
"args": [
15+
"run",
16+
"${fileDirnameBasename}/${fileBasenameNoExtension}"
17+
],
18+
"smartStep": true,
19+
"console": "integratedTerminal"
20+
}
1921
]
2022
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
11.2.0
2+
3+
- Fix wrong typing for `R.equal`,`R.path`, `R.prop`, `R.propEq`, `R.prepend` - [Issue #803](https://github.com/selfrefactor/rambda/issues/803)
4+
5+
- Add `R.splitEveryStrict`
6+
7+
- Add `R.mergeDeep`
8+
9+
- Change `R.range` when start and end are the same to return array with one element instead of empty array.
10+
11+
- Fix wrong usage of non-curried methods in example snippets.
12+
13+
- Migrate to `vitest` for TS testing
14+
115
11.1.0
216

317
- Add `R.filterMap` - similar to Ruby `filter_map`

0 commit comments

Comments
 (0)