@manojkmfsi/monodog 1.0.15 → 1.0.16

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @manojkmfsi/monodog@1.0.15 build /home/runner/work/monodog/monodog/packages/monoapp
2
+ > @manojkmfsi/monodog@1.0.16 build /home/runner/work/monodog/monodog/packages/monoapp
3
3
  > rm -rf dist && tsc
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @manojkmfsi/monoapp
2
2
 
3
+ ## 1.0.16
4
+
5
+ ### Patch Changes
6
+
7
+ - updated installation instruction
8
+
3
9
  ## 1.0.15
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## 🎯 Overview
4
4
 
5
- The dashboard will provide visual management and monitoring capabilities for packages in monorepos using pnpm. It will be distributed as an npm package installable in any monorepo to auto-generate a web UI for package oversight.
5
+ The dashboard will provide visual management and monitoring capabilities for packages in monorepos using pnpm, turbo. It will be distributed as an npm package installable in any monorepo to auto-generate a web UI for package oversight.
6
6
 
7
7
  This service is typically run locally or on a central server and power a dedicated frontend dashboard.
8
8
  <img width="1593" height="807" alt="package-scan" src="https://github.com/user-attachments/assets/d7e86b80-9f6a-4608-9103-68e6d660cc36" />
@@ -37,11 +37,12 @@ You must have the following installed to run the service:
37
37
 
38
38
  Install monodog in a monorepo workspace root:
39
39
 
40
- pnpm install --save-dev @manojkmfsi/monodog -w
40
+ pnpm dlx @mindfiredigital/monodog
41
+
41
42
 
42
43
  Run app using serve script:
43
44
 
44
- npm --workspace @manojkmfsi/monodog run serve
45
+ cd ./monodog/ && npm run serve
45
46
 
46
47
  ### Key API Endpoints
47
48
 
@@ -49,7 +50,7 @@ Run app using serve script:
49
50
  | ------- | --------------------------- | --------------------------------------------------------------------------------------- | ------------------- |
50
51
  | **GET** | `/api/packages` | Retrieve all package metadata from the database. | Persistent |
51
52
  | **GET** | `/api/packages/refresh` | Trigger a full file scan of the monorepo and update/sync the database. | Triggers write |
52
- | **GET** | `/api/packages/:name` | Get detailed info, commits`, and Health status for a package. | Persistent |
53
+ | **GET** | `/api/packages/:name` | Get detailed info, commits and health status for a package. | Persistent |
53
54
  | **GET** | `/api/health/packages` | Fetch the latest health metrics (score, build status) for all packages. | Persistent |
54
55
  | **GET** | `/api/health/refresh` | Recalculate all package health metrics (tests, lint, security) and update the database. | Triggers write |
55
56
  | **GET** | `/api/commits/:packagePath` | Fetch Git commit history for a specific package directory. | Persistent |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manojkmfsi/monodog",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "App for monodog monorepo",
5
5
  "license": "MIT",
6
6
  "bin": {