fleetbo-cockpit-cli 1.0.79 → 1.0.80
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/cli.js +8 -2
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -893,7 +893,7 @@ else {
|
|
|
893
893
|
}
|
|
894
894
|
|
|
895
895
|
const npmCmd = process.platform === 'win32' ? 'npm.cmd' : 'npm';
|
|
896
|
-
const devServer = spawn(npmCmd, ['run', 'dev'], {
|
|
896
|
+
const devServer = spawn(npmCmd, ['run', 'dev', '--silent'], {
|
|
897
897
|
stdio: ['ignore', 'pipe', 'pipe'],
|
|
898
898
|
shell: true,
|
|
899
899
|
env: {
|
|
@@ -920,7 +920,13 @@ else {
|
|
|
920
920
|
'Starting the development server',
|
|
921
921
|
'You can now view',
|
|
922
922
|
'vite v',
|
|
923
|
-
'
|
|
923
|
+
'VITE v', // Vite en majuscules
|
|
924
|
+
'ready in', // Cache "ready in 180 ms"
|
|
925
|
+
'➜ Local', // Cache l'URL locale
|
|
926
|
+
'➜ Network', // Cache l'URL réseau
|
|
927
|
+
'press h + enter',
|
|
928
|
+
'> vite', // Au cas où npm force l'affichage
|
|
929
|
+
'> fleetbo'
|
|
924
930
|
];
|
|
925
931
|
|
|
926
932
|
// On filtre les lignes pour ne garder que le vrai code/debug
|