File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,25 @@ Please star our project on GitHub to show your support! ⭐️
7
7
8
8
_ Breaking changes, which may affect downstream projects, are marked with a_ ⚠️
9
9
10
-
11
10
<!--
12
11
# A.B.C
13
12
##### YYYY-MMM-DD
14
-
15
13
*
16
14
17
15
[#xxx]: https://github.com/bhousel/node-diff3/issues/xxx
18
16
-->
19
17
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
+
20
29
## 2.1.2
21
30
##### 2021-May-04
22
31
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " node-diff3" ,
3
- "version" : " 2.1.2 " ,
3
+ "version" : " 3.0.0 " ,
4
4
"license" : " MIT" ,
5
5
"repository" : " github:bhousel/node-diff3" ,
6
6
"description" : " A node.js module for text diffing and three-way-merge." ,
You can’t perform that action at this time.
0 commit comments