@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.
- package/bin/cli.js +2 -0
- 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
|
|