@reactful/create 0.0.99 → 0.0.101

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +24 -24
package/index.js CHANGED
@@ -53,7 +53,7 @@ async function prompting(answers) {
53
53
  renamingJSON(destination, answers.project)
54
54
 
55
55
  console.log('- installing dependencies...\n')
56
- fs.chdir(answers.project)
56
+ process.chdir(answers.project)
57
57
  execSync(`bun install`)
58
58
  }
59
59
 
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
1
  {
2
- "name": "@reactful/create",
3
- "version": "0.0.99",
4
- "main": "index.js",
5
- "type": "module",
6
- "description": "reactful scafold tool",
7
- "author": "jonathan de sena ribeiro <jsenaribeiro@gmail.com>",
8
- "bin": { "@reactful/create": "index.js" },
9
- "files": [
10
- "index.js",
11
- "package.json",
12
- "templates",
13
- "commons"
14
- ],
15
- "scripts": {
16
- "start": "bun run index.js",
17
- "deploy": "npm publish --access public"
18
- },
19
- "license": "MIT",
20
- "dependencies": {
21
- "bun-types": "latest",
22
- "inquirer": "^9.2.13",
23
- "npm-registry-fetch": "^16.1.0",
24
- "tar": "^6.2.0"
25
- }
2
+ "name": "@reactful/create",
3
+ "version": "0.0.101",
4
+ "main": "index.js",
5
+ "type": "module",
6
+ "description": "reactful scafold tool",
7
+ "author": "jonathan de sena ribeiro <jsenaribeiro@gmail.com>",
8
+ "bin": { "@reactful/create": "index.js" },
9
+ "files": [
10
+ "index.js",
11
+ "package.json",
12
+ "templates",
13
+ "commons"
14
+ ],
15
+ "scripts": {
16
+ "start": "bun run index.js",
17
+ "deploy": "npm publish --access public"
18
+ },
19
+ "license": "MIT",
20
+ "dependencies": {
21
+ "tar": "^6.2.0",
22
+ "bun-types": "latest",
23
+ "inquirer": "^9.2.13",
24
+ "npm-registry-fetch": "^16.1.0"
25
+ }
26
26
  }