@aibai/create-myvue 0.0.8 → 0.0.9

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/bin/cli.js +2 -0
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -393,6 +393,8 @@ program
393
393
  .option('--prettier', '添加 Prettier 用于代码格式化')
394
394
  .option('--no-prettier', '不添加 Prettier 用于代码格式化')
395
395
  .action((projectName, options) => {
396
+ console.log('projectName:', projectName);
397
+ console.log('options:', options);
396
398
  main(projectName, options);
397
399
  });
398
400
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aibai/create-myvue",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "pnpm create vue@latest 的二次封装,支持自定义默认选项",
5
5
  "main": "./bin/cli.js",
6
6
  "bin": {