@cerema/cadriciel 0.5.9 → 0.5.91
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/cmd/init.js +7 -1
- package/package.json +1 -1
package/cmd/init.js
CHANGED
|
@@ -147,8 +147,14 @@ node_modules
|
|
|
147
147
|
);
|
|
148
148
|
spinner.succeed(`projet ${o.project} crée avec succès.`);
|
|
149
149
|
console.log('\n');
|
|
150
|
+
console.log('Prochaines étapes');
|
|
151
|
+
console.log('-----------------');
|
|
150
152
|
console.log('cd ' + o.project);
|
|
151
|
-
console.log('
|
|
153
|
+
console.log('git init');
|
|
154
|
+
console.log('git add --all');
|
|
155
|
+
console.log('git commit -m "first commit"');
|
|
156
|
+
console.log('npm i');
|
|
157
|
+
console.log('Lancer le backend avec votre IDE préféré ;-)');
|
|
152
158
|
console.log('\n');
|
|
153
159
|
console.log('\n🚀 Happy coding !\n');
|
|
154
160
|
});
|