@reactful/create 0.0.84 → 0.0.85

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.
Files changed (2) hide show
  1. package/index.js +2 -5
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -75,11 +75,8 @@ async function downloadGitHub(user, repository, subdir, destination) {
75
75
  for (const item of contents) {
76
76
  if (item.type === 'dir' && item.name) {
77
77
  const from = `${subdir}/${item.name}`
78
- const goto = `${destination}/${item.name}`
79
- console.log('- from', from)
80
- console.log('- goto', goto)
81
- await downloadGitHub(from, goto)
82
- continue
78
+ const goto = `${destination}/${item.name}`
79
+ await downloadRepo(from, goto); continue
83
80
  }
84
81
 
85
82
  if (item.type != 'file') continue
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reactful/create",
3
- "version": "0.0.84",
3
+ "version": "0.0.85",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "description": "reactful scafold tool",