@hoverlover/cc-dev-team 0.3.0 → 0.3.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/index.js +6 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -238,6 +238,12 @@ async function update() {
|
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
function start() {
|
|
241
|
+
logStep('Building dashboard...');
|
|
242
|
+
execSync('bun run build', {
|
|
243
|
+
cwd: join(INSTALL_DIR, 'dashboard'),
|
|
244
|
+
stdio: 'inherit'
|
|
245
|
+
});
|
|
246
|
+
|
|
241
247
|
logStep('Starting CC Dev Team...');
|
|
242
248
|
|
|
243
249
|
log(`\n${colors.bright}Dashboard:${colors.reset} http://localhost:3101`);
|