Skip to content

Commit b02f26e

Browse files
committed
v3.0.0
1 parent c083671 commit b02f26e

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

CHANGELOG.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,25 @@ Please star our project on GitHub to show your support! ⭐️
77

88
_Breaking changes, which may affect downstream projects, are marked with a_ ⚠️
99

10-
1110
<!--
1211
# A.B.C
1312
##### YYYY-MMM-DD
14-
1513
*
1614
1715
[#xxx]: https://github.com/bhousel/node-diff3/issues/xxx
1816
-->
1917

18+
## 3.0.0
19+
##### 2021-Jun-26
20+
21+
* ⚠️ Replace rollup with [esbuild](https://esbuild.github.io/) for super fast build speed. Package outputs are now:
22+
* `"module": "./index.mjs"` - ESM, modern JavaScript, works with `import`
23+
* `"main": "./dist/index.cjs"` - CJS bundle, modern JavaScript, works with `require()`
24+
* `"browser": "./dist/index.iife.js"` - IIFE bundle, modern JavaScript, works in browser `<script>` tag
25+
* No longer distributing ES5 builds
26+
* ⚠️ node-diff3 is marked as `"type": "module"` now
27+
28+
2029
## 2.1.2
2130
##### 2021-May-04
2231

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-diff3",
3-
"version": "2.1.2",
3+
"version": "3.0.0",
44
"license": "MIT",
55
"repository": "github:bhousel/node-diff3",
66
"description": "A node.js module for text diffing and three-way-merge.",

0 commit comments

Comments
 (0)