@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.
Files changed (2) hide show
  1. package/cmd/init.js +7 -1
  2. 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('cd ' + o.project);
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
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cerema/cadriciel",
3
- "version": "0.5.9",
3
+ "version": "0.5.91",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "npm": ">=8.0.0",