resultfier 0.1.1 → 0.2.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.
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
3
3
  "changelog": "@changesets/cli/changelog",
4
- "commit": false,
4
+ "commit": true,
5
5
  "fixed": [],
6
6
  "linked": [],
7
- "access": "restricted",
7
+ "access": "public",
8
8
  "baseBranch": "main",
9
9
  "updateInternalDependencies": "patch",
10
10
  "ignore": []
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # resultfier
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1575817: fix exports
8
+
3
9
  ## 0.1.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,18 +1,15 @@
1
1
  {
2
2
  "name": "resultfier",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "A TypeScript implementation of Rust-like Result type for better error handling",
5
5
  "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
6
9
  "scripts": {
7
10
  "build": "tsup",
8
11
  "prepublishOnly": "${npm_execpath} run build"
9
12
  },
10
- "exports": {
11
- ".": {
12
- "import": "./dist/index.js",
13
- "types": "./dist/index.d.ts"
14
- }
15
- },
16
13
  "author": "Vitor Koch <vitorgabrielkoch@gmail.com>",
17
14
  "license": "MIT",
18
15
  "repository": {