boltpkg / bolt

⚡️ Super-powered JavaScript project management
MIT License
2.34k stars 84 forks source link

ignore/only{Fs} should accept arrays #172

Open padmaia opened 6 years ago

padmaia commented 6 years ago
getWorkspaces({
  cwd,
  ignoreFs: [
    'packages/css-packs/*',
    'build/*',
    'website'
  ]
});

https://github.com/boltpkg/bolt/blob/b2f52a25311df2152794002f1d8792fadebe8360/src/functions/getWorkspaces.js#L7-L10

via @jamiebuilds

jamiebuilds commented 6 years ago

Brilliant idea

sidoshi commented 6 years ago

Can I work on this?

ajaymathur commented 6 years ago

@padmaia @jamiebuilds Nice Idea, What are the thoughts on it accepting string | Array<string> ?