rambda 7.0.1 → 7.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +221 -1285
- package/dist/rambda.esm.js +1 -1
- package/dist/rambda.js +1 -1
- package/dist/rambda.mjs +1 -1
- package/dist/rambda.umd.js +1 -1
- package/immutable.d.ts +11 -11
- package/index.d.ts +2 -2
- package/package.json +12 -4
- package/src/filter.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
WIP 7.1.0
|
|
2
|
+
|
|
3
|
+
- Replace `Async` with `Promise` as return type of `R.type`.
|
|
4
|
+
|
|
5
|
+
7.0.2
|
|
6
|
+
|
|
7
|
+
Rambda doesn't work with `pnpm` due to wrong export configuration - [Issue #619](https://github.com/selfrefactor/rambda/issues/619)
|
|
8
|
+
|
|
9
|
+
7.0.1
|
|
10
|
+
|
|
11
|
+
- Wrong ESM export configuration in `package.json` - [Issue #614](https://github.com/selfrefactor/rambda/issues/614)
|
|
12
|
+
|
|
1
13
|
7.0.0
|
|
2
14
|
|
|
3
15
|
- Braking change - sync `R.compose`/`R.pipe` with `@types/ramda`. That is significant change so as safeguard, it will lead a major bump. Important - this lead to raising required Typescript version to `4.2.2`. In other words, to use `Rambda` you'll need Typescript version `4.2.2` or newer.
|