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=error\nupdate-notifier=false\n`;
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": "@npx -y fleetbo-cockpit-cli@latest",
171
+ "fleetbo": "npx -y fleetbo-cockpit-cli@latest",
172
172
  "dev": "vite",
173
173
  "build": "vite build"
174
174
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fleetbo-project",
3
- "version": "1.2.93",
3
+ "version": "1.2.94",
4
4
  "description": "Creates a new Fleetbo project.",
5
5
  "main": "install-react-template.js",
6
6
  "bin": {