const entryPoints = glob.sync('./lib/scss/**/*.scss').reduce((acc, filePath) => {
  const filePathParts = filePath.replace('./lib/scss/', '').split('/');
  let fileName = filePathParts.pop();
  if (fileName.indexOf('_') === 0) {
    return acc;