mumei-dashboard 0.4.0 → 0.4.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/bin/mumei-dashboard.mjs +2 -2
- package/dist/assets/index-BHULKI8F.js +49 -0
- package/dist/index.html +1 -1
- package/dist/server/index.js +16216 -16650
- package/dist/server/index.js.map +1 -1
- package/package.json +4 -4
- package/dist/assets/index-4P4ikncl.js +0 -49
package/bin/mumei-dashboard.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// Entry point for `npx
|
|
2
|
+
// Entry point for `npx mumei-dashboard`. Boots the Fastify server in
|
|
3
3
|
// the user's current working directory (which is read as the project
|
|
4
4
|
// root). The Vite dev server is a separate concern handled by
|
|
5
5
|
// `npm run dev` from the dashboard repo; the published bin always
|
|
@@ -26,7 +26,7 @@ if (!existsSync(builtEntry)) {
|
|
|
26
26
|
process.on('SIGTERM', () => child.kill('SIGTERM'))
|
|
27
27
|
} else {
|
|
28
28
|
console.error(
|
|
29
|
-
'
|
|
29
|
+
'mumei-dashboard: no built server found at dist/server/index.js. Run `npm run build:server`.',
|
|
30
30
|
)
|
|
31
31
|
process.exit(1)
|
|
32
32
|
}
|