@reactful/create 0.0.59 → 0.0.60

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 -6
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -32,12 +32,7 @@ const questions = [
32
32
  ]
33
33
 
34
34
  inquirer.prompt(questions).then(async function (answers) {
35
- // const fromTemplate = path.join(process.cwd(), base, 'templates', answers.template)
36
- // const destination = path.join(process.cwd(), answers.project)
37
- // const fromCommon = path.join(process.cwd(), base, 'common')
38
- // copyFolder(fromTemplate, destination)
39
- // copyFolder(fromCommon, destination)
40
-
35
+ const destination = path.join(process.cwd(), answers.project)
41
36
  const base = 'https://github.com/jsenaribeiro/reactful/installation/'
42
37
 
43
38
  copyScaffold(`${base}/common`, destination)
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@reactful/create",
3
- "version": "0.0.59",
3
+ "version": "0.0.60",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "description": "reactful scafold tool",
7
7
  "author": "jonathan de sena ribeiro <jsenaribeiro@gmail.com>",
8
- "license": "MIT",
9
8
  "files": [ "index.js", "package.json" ],
10
9
  "bin": { "@reactful/create": "index.js" },
10
+ "license": "MIT",
11
11
  "scripts": {
12
12
  "deploy": "npm publish --access public"
13
13
  },