@myvillage/cli 1.62.0 → 1.62.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myvillage/cli",
3
- "version": "1.62.0",
3
+ "version": "1.62.1",
4
4
  "description": "MyVillageOS CLI for community developers",
5
5
  "type": "module",
6
6
  "bin": {
@@ -87,10 +87,9 @@ export async function createGameCommand(options = {}) {
87
87
  name: 'ageGroup',
88
88
  message: 'Target age group:',
89
89
  choices: [
90
- { name: '5-8 years', value: '5-8' },
91
- { name: '9-12 years', value: '9-12' },
92
- { name: '13-15 years', value: '13-15' },
93
- { name: '16-18 years', value: '16-18' },
90
+ { name: 'Under 5', value: 'under-5' },
91
+ { name: '6-12', value: '6-12' },
92
+ { name: '13 and Over', value: '13-and-over' },
94
93
  ],
95
94
  },
96
95
  ]);
@@ -129,6 +128,7 @@ export async function createGameCommand(options = {}) {
129
128
  console.log(brand.teal(' Next steps:'));
130
129
  console.log();
131
130
  console.log(` ${brand.gold('cd')} ${slug}`);
131
+ console.log(` ${brand.gold('npm install')} ${brand.teal('- Install dependencies (already run for you; re-run after cloning)')}`);
132
132
  console.log(` ${brand.gold('npm run dev')} ${brand.teal('- Start development server')}`);
133
133
  console.log(` ${brand.gold('npm run build')} ${brand.teal('- Build for production')}`);
134
134
  console.log(` ${brand.gold('myvillage deploy')} ${brand.teal('- Deploy to MyVillageOS')}`);
@@ -182,10 +182,9 @@ async function createUnityGame(options = {}) {
182
182
  name: 'ageGroup',
183
183
  message: 'Target age group:',
184
184
  choices: [
185
- { name: '5-8 years', value: '5-8' },
186
- { name: '9-12 years', value: '9-12' },
187
- { name: '13-15 years', value: '13-15' },
188
- { name: '16-18 years', value: '16-18' },
185
+ { name: 'Under 5', value: 'under-5' },
186
+ { name: '6-12', value: '6-12' },
187
+ { name: '13 and Over', value: '13-and-over' },
189
188
  ],
190
189
  },
191
190
  ]);