@feedmepos/mf-report 5.0.10-rc.1
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/README.md +30 -0
- package/dist/app.js +235738 -0
- package/dist/favicon.ico +0 -0
- package/dist/style.css +1 -0
- package/package.json +68 -0
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# report-v5
|
|
2
|
+
v5 portal report UI
|
|
3
|
+
|
|
4
|
+
## prerequisite
|
|
5
|
+
|
|
6
|
+
### node
|
|
7
|
+
18.17.1
|
|
8
|
+
|
|
9
|
+
### pnpm
|
|
10
|
+
8.15.6
|
|
11
|
+
|
|
12
|
+
## Project Setup
|
|
13
|
+
|
|
14
|
+
To get started with the project, run the following commands:
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
pnpm install
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Compile and Hot-Reload for Development
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
pnpm dev
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Type-Check, Compile and Minify for Production
|
|
27
|
+
|
|
28
|
+
```sh
|
|
29
|
+
pnpm build
|
|
30
|
+
```
|