@common-fp/shared-internals 0.1.1 → 0.1.3

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.
Files changed (2) hide show
  1. package/package.json +4 -2
  2. package/readme.md +4 -2
package/package.json CHANGED
@@ -2,8 +2,10 @@
2
2
  "name": "@common-fp/shared-internals",
3
3
  "description": "Code used to build common-fp utilities",
4
4
  "private": false,
5
- "version": "0.1.1",
5
+ "version": "0.1.3",
6
+ "sideEffects": false,
6
7
  "main": "dist/index.cjs",
8
+ "type": "module",
7
9
  "types": "./dist/index.d.cts",
8
10
  "exports": {
9
11
  ".": {
@@ -44,7 +46,7 @@
44
46
  }
45
47
  },
46
48
  "peerDependencies": {
47
- "@common-fp/shared-internals-types": "^0.1.1"
49
+ "@common-fp/shared-internals-types": "^0.1.2"
48
50
  },
49
51
  "engines": {
50
52
  "node": ">=20"
package/readme.md CHANGED
@@ -2,9 +2,11 @@
2
2
 
3
3
  On npm: `@common-fp/shared-internals`
4
4
 
5
- This holds functions used to build the `common-fp` utilities - things like
5
+ ![Full code coverage](./misc/coverage-badge.svg)
6
+
7
+ These are the functions used to build the `common-fp` utilities - things like
6
8
  input assertions and determining the input type.
7
9
 
8
- This package exists because originally I imagined sharing the internals for
10
+ This package exists because I originally imagined sharing the internals for
9
11
  other devs to build their own FP utilities. But I've decided to wait on that
10
12
  because it would take time to refine the API and write documentation.