resultfier 0.1.0 → 0.1.1

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 ADDED
@@ -0,0 +1,13 @@
1
+ # resultfier
2
+
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - fix resolution bug
8
+
9
+ ## 0.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - first release
package/README.md CHANGED
@@ -0,0 +1 @@
1
+ # resultfier
package/bun.lock CHANGED
@@ -9,9 +9,6 @@
9
9
  "tsup": "^8.5.0",
10
10
  "typescript": "^5.9.2",
11
11
  },
12
- "peerDependencies": {
13
- "typescript": "^5",
14
- },
15
12
  },
16
13
  },
17
14
  "packages": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resultfier",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A TypeScript implementation of Rust-like Result type for better error handling",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -8,7 +8,7 @@
8
8
  "prepublishOnly": "${npm_execpath} run build"
9
9
  },
10
10
  "exports": {
11
- "core": {
11
+ ".": {
12
12
  "import": "./dist/index.js",
13
13
  "types": "./dist/index.d.ts"
14
14
  }
@@ -28,8 +28,5 @@
28
28
  "@types/bun": "latest",
29
29
  "tsup": "^8.5.0",
30
30
  "typescript": "^5.9.2"
31
- },
32
- "peerDependencies": {
33
- "typescript": "^5"
34
31
  }
35
32
  }
@@ -1,8 +0,0 @@
1
- # Changesets
2
-
3
- Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
- with multi-package repos, or single-package repos to help you version and publish your code. You can
5
- find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
-
7
- We have a quick list of common questions to get you started engaging with this project in
8
- [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)