@theproductguy/create-mission-control 1.0.8 → 1.0.10
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/bin/cli.js
CHANGED
|
@@ -121,7 +121,7 @@ async function init() {
|
|
|
121
121
|
|
|
122
122
|
appPkg.dependencies = {
|
|
123
123
|
...appPkg.dependencies,
|
|
124
|
-
"@theproductguy/agent-os-ui": "
|
|
124
|
+
"@theproductguy/agent-os-ui": "file:../agent-os-ui", // Force local resolution
|
|
125
125
|
"lucide-react": "^0.469.0",
|
|
126
126
|
"clsx": "^2.1.0",
|
|
127
127
|
"tailwind-merge": "^2.2.0",
|
package/package.json
CHANGED
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
14
|
"dev": "npm run build:ui && npm run start:all",
|
|
15
|
-
"build:ui": "
|
|
15
|
+
"build:ui": "npm run build -w @theproductguy/agent-os-ui",
|
|
16
16
|
"start:all": "concurrently \"npm run start:api\" \"npm run start:design\" \"npm run start:control\" \"npm run start:app\"",
|
|
17
|
-
"start:api": "
|
|
18
|
-
"start:design": "
|
|
19
|
-
"start:control": "
|
|
20
|
-
"start:app": "
|
|
17
|
+
"start:api": "cross-env PORT=5403 npm start -w backend",
|
|
18
|
+
"start:design": "npm run dev -w design-os -- --port 5400",
|
|
19
|
+
"start:control": "npm run dev -w frontend -- --port 5401",
|
|
20
|
+
"start:app": "npm run dev -w app -- --port 5402",
|
|
21
21
|
"build": "npm run build --workspaces",
|
|
22
22
|
"test": "vitest run",
|
|
23
23
|
"test:watch": "vitest",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"@types/node": "^20.11.0",
|
|
37
37
|
"@vitest/coverage-v8": "^2.0.0",
|
|
38
38
|
"concurrently": "^8.2.2",
|
|
39
|
+
"cross-env": "^7.0.3",
|
|
39
40
|
"eslint": "^9.0.0",
|
|
40
41
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
41
42
|
"eslint-plugin-react-refresh": "^0.4.0",
|