@reactful/create 0.0.96 → 0.0.98
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/README.md +1 -2
- package/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/index.js
CHANGED
|
@@ -41,7 +41,7 @@ async function prompting(answers) {
|
|
|
41
41
|
|
|
42
42
|
await createDirectory(destination)
|
|
43
43
|
|
|
44
|
-
console.log('- downloading
|
|
44
|
+
console.log('- downloading NPM...')
|
|
45
45
|
await download('@reactful/create', temporaryPath)
|
|
46
46
|
|
|
47
47
|
console.log('- copying template...')
|
|
@@ -53,7 +53,7 @@ async function prompting(answers) {
|
|
|
53
53
|
renamingJSON(destination, answers.project)
|
|
54
54
|
|
|
55
55
|
console.log('- installing dependencies...\n')
|
|
56
|
-
|
|
56
|
+
fs.chdir(answers.project)
|
|
57
57
|
execSync(`bun install`)
|
|
58
58
|
}
|
|
59
59
|
|