chore: some->forEach (#424)
This commit is contained in:
parent
25af8dc73b
commit
fec47bb3ac
@ -14,7 +14,7 @@ const targets = (exports.targets = fs.readdirSync('packages').filter(f => {
|
|||||||
|
|
||||||
exports.fuzzyMatchTarget = (partialTargets, includeAllMatching) => {
|
exports.fuzzyMatchTarget = (partialTargets, includeAllMatching) => {
|
||||||
const matched = []
|
const matched = []
|
||||||
partialTargets.some(partialTarget => {
|
partialTargets.forEach(partialTarget => {
|
||||||
for (const target of targets) {
|
for (const target of targets) {
|
||||||
if (target.match(partialTarget)) {
|
if (target.match(partialTarget)) {
|
||||||
matched.push(target)
|
matched.push(target)
|
||||||
|
Loading…
Reference in New Issue
Block a user