Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_css_path.js « startup_css « frontend « scripts - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54078cf314910a8a204aeb68fe75276df41b39d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const fs = require('fs');
const path = require('path');
const { memoize } = require('lodash');
const { PATH_ASSETS } = require('./constants');
const { die } = require('./utils');

const listAssetsDir = memoize(() => fs.readdirSync(PATH_ASSETS));

const getCSSPath = (prefix) => {
  const matcher = new RegExp(`^${prefix}-[^-]+\\.css$`);
  const cssPath = listAssetsDir().find((x) => matcher.test(x));

  if (!cssPath) {
    die(
      `Could not find the CSS asset matching "${prefix}". Have you run "scripts/frontend/startup_css/setup.sh"?`,
    );
  }

  return path.join(PATH_ASSETS, cssPath);
};

module.exports = { getCSSPath };