Results 5 issues of Q

目前尝试只能bind的方式传参数(还改变了this到alloyfinger~难受)

it seem to does not work if i config it on package.json . i set the following code in package.json ```json { "file":["dist"] } ``` the node_modules will still copy...

const matchPath = function (p) { const files = [path.resolve(`src/${p}.js`), path.resolve(`src/${p}.vue`),path.resolve(`src/${p}/index.js`),path.resolve(`src/${p}/index.vue`)] for(const filePath of files){ if(fs.existsSync(filePath)){ return filePath } } return false } 增加下文件夹下index 的文件的处理