publ-echo 0.0.7 → 0.0.11
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/dist/index.js +6 -4
- package/package.json +18 -16
package/dist/index.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import React from "react";
|
|
3
1
|
import ReactDOM from "react-dom/client";
|
|
4
2
|
import reportWebVitals from "./reportWebVitals";
|
|
5
|
-
import App from "./App";
|
|
6
3
|
var root = ReactDOM.createRoot(document.getElementById("root"));
|
|
7
|
-
|
|
4
|
+
// ReactDOM.render(
|
|
5
|
+
// <React.StrictMode>
|
|
6
|
+
// <App />
|
|
7
|
+
// </React.StrictMode>,
|
|
8
|
+
// document.getElementById("root")
|
|
9
|
+
// );
|
|
8
10
|
// If you want to start measuring performance in your app, pass a function
|
|
9
11
|
// to log results (for example: reportWebVitals(console.log))
|
|
10
12
|
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
package/package.json
CHANGED
|
@@ -1,27 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "publ-echo",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"/dist"
|
|
9
9
|
],
|
|
10
|
-
"dependencies": {
|
|
11
|
-
"@testing-library/jest-dom": "^5.16.5",
|
|
12
|
-
"@testing-library/react": "^13.4.0",
|
|
13
|
-
"@testing-library/user-event": "^13.5.0",
|
|
14
|
-
"@types/jest": "^27.5.2",
|
|
15
|
-
"@types/node": "^16.18.32",
|
|
16
|
-
"@types/react": "^18.2.6",
|
|
17
|
-
"@types/react-dom": "^18.2.4",
|
|
18
|
-
"classnames": "^2.3.2",
|
|
19
|
-
"commander": "^10.0.1",
|
|
20
|
-
"react": "^18.2.0",
|
|
21
|
-
"react-dom": "^18.2.0",
|
|
22
|
-
"react-scripts": "5.0.1",
|
|
23
|
-
"web-vitals": "^2.1.4"
|
|
24
|
-
},
|
|
10
|
+
"dependencies": {},
|
|
25
11
|
"scripts": {
|
|
26
12
|
"start": "react-scripts start",
|
|
27
13
|
"build": "rm -rf ./dist && tsc -noEmit false",
|
|
@@ -47,10 +33,26 @@
|
|
|
47
33
|
]
|
|
48
34
|
},
|
|
49
35
|
"devDependencies": {
|
|
36
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
37
|
+
"@testing-library/react": "^13.4.0",
|
|
38
|
+
"@testing-library/user-event": "^13.5.0",
|
|
39
|
+
"@types/jest": "^27.5.2",
|
|
40
|
+
"@types/node": "^16.18.32",
|
|
41
|
+
"@types/react": "^18.2.6",
|
|
42
|
+
"@types/react-dom": "^18.2.4",
|
|
43
|
+
"classnames": "^2.3.2",
|
|
44
|
+
"commander": "^10.0.1",
|
|
45
|
+
"react": "^18.2.0",
|
|
46
|
+
"react-dom": "^18.2.0",
|
|
47
|
+
"web-vitals": "^2.1.4",
|
|
50
48
|
"@types/lodash": "^4.14.194",
|
|
51
49
|
"@types/styled-components": "^5.1.26",
|
|
52
50
|
"lodash": "^4.17.21",
|
|
53
51
|
"styled-components": "^5.3.10",
|
|
54
52
|
"typescript": "^5.1.6"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"react": ">= 16.3.0",
|
|
56
|
+
"react-dom": ">= 16.3.0"
|
|
55
57
|
}
|
|
56
58
|
}
|