Skip to content

Commit a10a63f

Browse files
committedFeb 27, 2025·
update version
1 parent 01b68a8 commit a10a63f

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed
 

‎Changelog.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.7.4] - 2025-02-27
6+
7+
### Added
8+
9+
#### `build.ts`
10+
- .cjs extension to CommonJS output files
11+
- a plugin to fix require() statements to reference .cjs files
12+
13+
### Changed
14+
- The build process for npm uses a build.ts file to build the project with esbuild. This gives esm js files the .js extension which is needed for some environments.
15+
16+
517
## [0.7.3] - 2024-12-11
618

719
### Changed

‎jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@might/fail",
3-
"version": "0.7.3",
3+
"version": "0.7.4",
44
"exports": {
55
".": "./src/index.ts",
66
"./go": "./src/go/index.ts"

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "might-fail",
3-
"version": "0.7.3",
3+
"version": "0.7.4",
44
"description": "A better way to handle errors in JavaScript and TypeScript. Handle async and sync errors without `try` and `catch` blocks.",
55
"main": "dist/cjs/index.cjs",
66
"module": "dist/index.js",

0 commit comments

Comments
 (0)
Please sign in to comment.