create-fleetbo-project 1.2.93 → 1.2.94
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.
|
@@ -152,7 +152,7 @@ yarn-error.log*
|
|
|
152
152
|
`;
|
|
153
153
|
fs.writeFileSync(path.join(projectDir, '.gitignore'), gitignoreContent, 'utf8');
|
|
154
154
|
|
|
155
|
-
const npmrcContent = `loglevel=
|
|
155
|
+
const npmrcContent = `loglevel=silent\nupdate-notifier=false\n`;
|
|
156
156
|
fs.writeFileSync(path.join(projectDir, '.npmrc'), npmrcContent, 'utf8');
|
|
157
157
|
|
|
158
158
|
console.log(' [7/8] Installing dependencies...');
|
|
@@ -168,7 +168,7 @@ yarn-error.log*
|
|
|
168
168
|
// Configuration pour utiliser le package NPM centralisé
|
|
169
169
|
packageJson.scripts = {
|
|
170
170
|
...packageJson.scripts,
|
|
171
|
-
"fleetbo": "
|
|
171
|
+
"fleetbo": "npx -y fleetbo-cockpit-cli@latest",
|
|
172
172
|
"dev": "vite",
|
|
173
173
|
"build": "vite build"
|
|
174
174
|
};
|