@feedmepos/mf-remy-panel 0.0.1 → 0.0.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/README.md +32 -15
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,18 +1,35 @@
|
|
|
1
1
|
# @feedmepos/mf-remy-panel
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
install
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
3
|
+
This project was scaffolded using [create-mf-app](https://github.com/jherr/create-mf-app). It includes Vue 3, Vite, TypeScript, Vue Router, Pinia, Feedme UI Library, and Tailwind CSS.
|
|
4
|
+
|
|
5
|
+
## Project Setup
|
|
6
|
+
|
|
7
|
+
To get started with the project, run the following commands:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
pnpm install
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Compile and Hot-Reload for Development
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
pnpm dev
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Type-Check, Compile and Minify for Production
|
|
20
|
+
|
|
16
21
|
```sh
|
|
17
|
-
pnpm
|
|
18
|
-
|
|
22
|
+
pnpm build
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Lint with [ESLint](https://eslint.org/)
|
|
26
|
+
|
|
27
|
+
```sh
|
|
28
|
+
pnpm lint
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## How to Update
|
|
32
|
+
|
|
33
|
+
1. Bump version in the `package.json`
|
|
34
|
+
2. Create a tag with `mf-remy-panel@<version>`
|
|
35
|
+
3. Push to git, then the workflow will trigger
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feedmepos/mf-remy-panel",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -20,8 +20,7 @@
|
|
|
20
20
|
"marked": "^11.1.1",
|
|
21
21
|
"pinia": "^2.1.7",
|
|
22
22
|
"vue": "^3.3.8",
|
|
23
|
-
"vue-router": "^4.2.5"
|
|
24
|
-
"@feedmepos/remy-core": "1.0.0"
|
|
23
|
+
"vue-router": "^4.2.5"
|
|
25
24
|
},
|
|
26
25
|
"devDependencies": {
|
|
27
26
|
"@rushstack/eslint-patch": "^1.3.3",
|
|
@@ -41,7 +40,8 @@
|
|
|
41
40
|
"typescript": "~5.2.0",
|
|
42
41
|
"vite": "^4.4.9",
|
|
43
42
|
"vue-tsc": "^1.8.11",
|
|
44
|
-
"vue-i18n": "10.0.5"
|
|
43
|
+
"vue-i18n": "10.0.5",
|
|
44
|
+
"@feedmepos/remy-core": "1.0.0"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"dev": "vite",
|