@reactful/create 0.0.96 → 0.0.97

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 -1
  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...')
@@ -54,6 +54,7 @@ async function prompting(answers) {
54
54
 
55
55
  console.log('- installing dependencies...\n')
56
56
  execSync(`cd ${answers.project}`)
57
+ execSync(`ls`)
57
58
  execSync(`bun install`)
58
59
  }
59
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reactful/create",
3
- "version": "0.0.96",
3
+ "version": "0.0.97",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "description": "reactful scafold tool",