@parischap/conversions 0.5.0 → 0.6.0

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/README.md CHANGED
@@ -6,7 +6,7 @@ An [`Effect`](https://effect.website/docs/introduction) library to partially rep
6
6
 
7
7
  Non machine-dependent, safe, bidirectional (implements parsing and formatting), tested, documented, with lots of examples, 100% Typescript, 100% functional.
8
8
 
9
- Can also come in handy to non-`Effect` users.
9
+ Can also come in handy to non-Effect users.
10
10
 
11
11
  </div>
12
12
 
@@ -37,7 +37,7 @@ Depending on the package manager you use, run one of the following commands in y
37
37
 
38
38
  We use two peerDependencies. If you are not an `Effect` user, the size may seem important. But, in fact, we use little of each peerDependency. Bundled and tree-shaken, this module is only about [69kB](https://bundlephobia.com/package/@parischap/conversions). Minified and gzipped, it falls to [15kB](https://bundlephobia.com/package/@parischap/conversions)! (source bundlephobia).
39
39
 
40
- Also, keep in mind that your bundler will tree-shake all which you don't use. For example, this package comes in esm and cjs versions, with Typescript typings. So if you don't use cjs, the size will be highly reduced. That's also true if you only use the DateTime parser/formatter and not the number parser/formatter...
40
+ This is a modern tree-shakable library: keep in mind that your bundler will tree-shake all which you don't use. For example, this package comes in esm and cjs versions, with Typescript typings. So if you don't use cjs, the size will be highly reduced. That's also true if you only use the DateTime parser/formatter and not the number parser/formatter...
41
41
 
42
42
  ## API
43
43
 
package/esm/package.json CHANGED
@@ -1,3 +1,4 @@
1
1
  {
2
+ "sideEffects": false,
2
3
  "type": "module"
3
4
  }
package/package.json CHANGED
@@ -42,8 +42,9 @@
42
42
  "types": "./dts/index.d.ts"
43
43
  }
44
44
  },
45
+ "sideEffects": false,
45
46
  "peerDependencies": {
46
- "@parischap/effect-lib": "^0.7.0",
47
+ "@parischap/effect-lib": "^0.8.0",
47
48
  "effect": "^3.17.13"
48
49
  },
49
50
  "repository": {
@@ -52,7 +53,7 @@
52
53
  "directory": "packages/conversions"
53
54
  },
54
55
  "homepage": "https://github.com/parischap/effect-libs/tree/master/packages/conversions",
55
- "version": "0.5.0",
56
+ "version": "0.6.0",
56
57
  "main": "./cjs/index.js",
57
58
  "types": "./dts/index.d.ts"
58
59
  }