create-skateboard-app 1.0.1 → 1.0.2

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/CHANGELOG.md CHANGED
@@ -1,12 +1,12 @@
1
1
 
2
+ 1.0.2
3
+
4
+ Clarify prompt labels
5
+
2
6
  1.0.1
3
- Improve template download speed and simplify setup flow
4
- Remove unreliable degit method, use git clone as primary
5
- Add curl+tar as faster fallback method
6
- Fix skateboard-master folder duplication issue
7
- Simplify setup by removing backend URL, pages, and company name prompts
8
- Change npm run dev to npm run start in instructions
9
- Clarify that users need to manually cd into project directory
10
- Bump version to 1.0.1
7
+
8
+ Improve download speed
9
+ Simplify setup flow
10
+ Fix folder duplication
11
11
 
12
12
  1.0.0
package/bin/cli.js CHANGED
@@ -187,7 +187,7 @@ async function collectProjectConfig(projectName) {
187
187
  log(`\n${colors.bold}Let's configure your Skateboard app!${colors.reset}\n`);
188
188
 
189
189
  // App name
190
- const appName = await ask('App name', projectName.split('-').map(word =>
190
+ const appName = await ask('App display name', projectName.split('-').map(word =>
191
191
  word.charAt(0).toUpperCase() + word.slice(1)
192
192
  ).join(' '));
193
193
 
@@ -294,7 +294,7 @@ async function main() {
294
294
  // If no project name provided, ask for it
295
295
  if (!projectName) {
296
296
  log(`\n${colors.bold}🛹 Welcome to Skateboard App Creator!${colors.reset}\n`);
297
- projectName = await ask('What is the name of your project?', 'my-skateboard-app');
297
+ projectName = await ask('Project directory name', 'my-skateboard-app');
298
298
  }
299
299
 
300
300
  // Validate project name
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-skateboard-app",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Create a new Skateboard app with React, TailwindCSS, and more",
5
5
  "main": "index.js",
6
6
  "type": "module",