fbredius/storybook

View on GitHub
lib/core-common/src/utils/glob-to-regexp.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { makeRe } from 'picomatch';

export function globToRegexp(glob: string) {
  const regex = makeRe(glob, {
    fastpaths: false,
    noglobstar: false,
    bash: false,
  });

  if (!regex.source.startsWith('^')) {
    throw new Error(`Invalid glob: >> ${glob} >> ${regex}`);
  }

  if (!glob.startsWith('./')) {
    return regex;
  }

  // makeRe is sort of funny. If you pass it a directory starting with `./` it
  // creates a matcher that expects files with no prefix (e.g. `src/file.js`)
  // but if you pass it a directory that starts with `../` it expects files that
  // start with `../`. Let's make it consistent.
  // Globs starting `**` require special treatment due to the regex they
  // produce, specifically a negative look-ahead
  return new RegExp(
    ['^\\.', glob.startsWith('./**') ? '' : '[\\\\/]', regex.source.substring(1)].join('')
  );
}