adminforth 2.25.0-next.5 → 2.25.0-next.7

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.
@@ -17,23 +17,23 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
17
17
  ## Project Setup
18
18
 
19
19
  ```sh
20
- pnpm install
20
+ npm install
21
21
  ```
22
22
 
23
23
  ### Compile and Hot-Reload for Development
24
24
 
25
25
  ```sh
26
- pnpm dev
26
+ npm run dev
27
27
  ```
28
28
 
29
29
  ### Type-Check, Compile and Minify for Production
30
30
 
31
31
  ```sh
32
- pnpm build
32
+ npm run build
33
33
  ```
34
34
 
35
35
  ### Lint with [ESLint](https://eslint.org/)
36
36
 
37
37
  ```sh
38
- pnpm lint
38
+ npm run lint
39
39
  ```