@reactful/create 0.0.81 → 0.0.82

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 +5 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -76,7 +76,11 @@ async function downloadGitHub(user, repository, subdir, destination) {
76
76
  const from = `${subdir}/${item.name}`
77
77
  const goto = `${destination}/${item.name}`
78
78
 
79
- if (item.type === 'dir') await downloadGitHub(from, goto)
79
+ if (item.type === 'dir') {
80
+ await downloadGitHub(from, goto)
81
+ continue
82
+ }
83
+
80
84
  if (item.type != 'file') continue
81
85
 
82
86
  const filename = path.join(destination, item.name)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reactful/create",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "description": "reactful scafold tool",