react-diff-viewer-continued 3.2.1 → 3.2.2
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 +7 -0
- package/README.md +2 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.2.2](https://github.com/aeolun/react-diff-viewer-continued/compare/v3.2.1...v3.2.2) (2022-10-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* move the dependencies for development only to `devDependencies` ([206394c](https://github.com/aeolun/react-diff-viewer-continued/commit/206394cb16352f2c3601383b8510b4dee9578405))
|
|
7
|
+
|
|
1
8
|
## [3.2.1](https://github.com/aeolun/react-diff-viewer-continued/compare/v3.2.0...v3.2.1) (2022-07-07)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -8,6 +8,8 @@ A simple and beautiful text diff viewer component made with [Diff](https://githu
|
|
|
8
8
|
|
|
9
9
|
Inspired from Github diff viewer, it includes features like split view, inline view, word diff, line highlight and more. It is highly customizable and it supports almost all languages.
|
|
10
10
|
|
|
11
|
+
Most credit goes to [Pranesh Ravi](https://praneshravi.in) who created the [original diff viewer](https://github.com/praneshr/react-diff-viewer). I've just made a few modifications and updated the dependencies so they work with modern stacks.
|
|
12
|
+
|
|
11
13
|
## Install
|
|
12
14
|
|
|
13
15
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-diff-viewer-continued",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Continuation of a simple and beautiful text diff viewer component made with diff and React",
|
|
6
6
|
"keywords": [
|
|
@@ -35,21 +35,17 @@
|
|
|
35
35
|
"prettier": "prettier --write ."
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@babel/core": "^7.18.6",
|
|
39
|
-
"@babel/preset-env": "^7.18.6",
|
|
40
|
-
"@babel/preset-react": "^7.18.6",
|
|
41
|
-
"@babel/preset-typescript": "^7.18.6",
|
|
42
38
|
"classnames": "^2.3.1",
|
|
43
39
|
"diff": "^5.1.0",
|
|
44
40
|
"emotion": "^10.0.27",
|
|
45
|
-
"jest": "^28.1.2",
|
|
46
|
-
"jest-environment-jsdom": "^28.1.2",
|
|
47
41
|
"memoize-one": "^6.0.0",
|
|
48
|
-
"
|
|
49
|
-
"prop-types": "^15.8.1",
|
|
50
|
-
"sass": "^1.53.0"
|
|
42
|
+
"prop-types": "^15.8.1"
|
|
51
43
|
},
|
|
52
44
|
"devDependencies": {
|
|
45
|
+
"@babel/core": "^7.18.6",
|
|
46
|
+
"@babel/preset-env": "^7.18.6",
|
|
47
|
+
"@babel/preset-react": "^7.18.6",
|
|
48
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
53
49
|
"@semantic-release/changelog": "6.0.1",
|
|
54
50
|
"@semantic-release/git": "10.0.1",
|
|
55
51
|
"@testing-library/react": "^12.1.5",
|
|
@@ -75,11 +71,15 @@
|
|
|
75
71
|
"file-loader": "^6.2.0",
|
|
76
72
|
"gh-pages": "^4.0.0",
|
|
77
73
|
"html-webpack-plugin": "^5.5.0",
|
|
74
|
+
"jest": "^28.1.2",
|
|
75
|
+
"jest-environment-jsdom": "^28.1.2",
|
|
78
76
|
"mini-css-extract-plugin": "^2.6.1",
|
|
79
77
|
"mocha": "^10.0.0",
|
|
78
|
+
"prettier": "^2.7.1",
|
|
80
79
|
"raw-loader": "^4.0.2",
|
|
81
80
|
"react": "^17.0.2",
|
|
82
81
|
"react-dom": "^17.0.2",
|
|
82
|
+
"sass": "^1.53.0",
|
|
83
83
|
"sass-loader": "^13.0.2",
|
|
84
84
|
"semantic-release": "^19.0.3",
|
|
85
85
|
"spy": "^1.0.0",
|