正在显示
1 个修改的文件
包含
2 行增加
和
1 行删除
@@ -5,7 +5,7 @@ const mkdirp = require('mkdirp'); | @@ -5,7 +5,7 @@ const mkdirp = require('mkdirp'); | ||
5 | function parseJSON(root) { | 5 | function parseJSON(root) { |
6 | const dirs = readdirSync(root); | 6 | const dirs = readdirSync(root); |
7 | const type = basename(root); | 7 | const type = basename(root); |
8 | - return dirs.reduce((memo, dir) => { | 8 | + const list = dirs.reduce((memo, dir) => { |
9 | if (dir.charAt(0) === '.') return; | 9 | if (dir.charAt(0) === '.') return; |
10 | const absDirPath = join(root, dir); | 10 | const absDirPath = join(root, dir); |
11 | const pkg = require(join(absDirPath, 'package.json')); | 11 | const pkg = require(join(absDirPath, 'package.json')); |
@@ -21,6 +21,7 @@ function parseJSON(root) { | @@ -21,6 +21,7 @@ function parseJSON(root) { | ||
21 | }); | 21 | }); |
22 | return memo; | 22 | return memo; |
23 | }, []); | 23 | }, []); |
24 | + return { list }; | ||
24 | } | 25 | } |
25 | 26 | ||
26 | function generate(root) { | 27 | function generate(root) { |
请
注册
或
登录
后发表评论