@reactful/create 0.0.96 → 0.0.98

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/README.md +1 -2
  2. package/index.js +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -3,6 +3,5 @@
3
3
  Create a reactful framework with a project scafold tool.
4
4
 
5
5
  ```bash
6
- $ bun create reactful
7
- $ bunx creact-reactful
6
+ bunx @reactful/create@latest
8
7
  ```
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 package...')
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
- execSync(`cd ${answers.project}`)
56
+ fs.chdir(answers.project)
57
57
  execSync(`bun install`)
58
58
  }
59
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reactful/create",
3
- "version": "0.0.96",
3
+ "version": "0.0.98",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "description": "reactful scafold tool",