@gx-design-vue/create-gx-cli 0.1.0 → 0.1.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 +1 -1
- package/src/cli.js +0 -1
- package/src/main.js +9 -3
package/package.json
CHANGED
package/src/cli.js
CHANGED
@@ -79,7 +79,6 @@ async function promptForMissingOptions(options) {
|
|
79
79
|
export async function cli() {
|
80
80
|
let options = parseArgumentsIntoOptions()
|
81
81
|
options = await promptForMissingOptions(options)
|
82
|
-
console.log(options)
|
83
82
|
if (options.template && options.projectName) {
|
84
83
|
await createProject(options)
|
85
84
|
}
|
package/src/main.js
CHANGED
@@ -41,9 +41,15 @@ function editPackageJson(root, projectName) {
|
|
41
41
|
fs.readFileSync(path.join(root, `package.json`), 'utf-8')
|
42
42
|
)
|
43
43
|
|
44
|
-
console.log(projectName)
|
45
|
-
|
46
44
|
pkg.name = projectName
|
45
|
+
|
46
|
+
const dirIsExists = fs.existsSync(path.join(root, '.npmrc'))
|
47
|
+
|
48
|
+
if (!dirIsExists) {
|
49
|
+
writeFile(path.join(root, '.npmrc'), 'shamefully-hoist=true')
|
50
|
+
}
|
51
|
+
|
52
|
+
|
47
53
|
writeFile(path.join(root, 'package.json'), JSON.stringify(pkg, null, 2))
|
48
54
|
}
|
49
55
|
}
|
@@ -112,7 +118,7 @@ export async function createProject(options) {
|
|
112
118
|
task: () => copyTemplateFiles(templateDir, root)
|
113
119
|
},
|
114
120
|
options.template !== 'mobile-vant-html' ? {
|
115
|
-
title: '
|
121
|
+
title: '初始化项目',
|
116
122
|
task: () => editPackageJson(root, options.projectName || getProjectName())
|
117
123
|
} : {}
|
118
124
|
],
|