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

require_helper.js « .markdownlint « doc - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d06cf67419fdfaa903a5ebc1c985be4ec64d437 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * Look up the global node modules directory.
 *
 * Because we install markdownlint packages globally
 * in the Docker image where this runs, we need to
 * provide the path to the global install location
 * when referencing global functions from our own node
 * modules.
 *
 * Image:
 * https://gitlab.com/gitlab-org/gitlab-docs/-/blob/main/dockerfiles/gitlab-docs-lint-markdown.Dockerfile
 */
const { execSync } = require('child_process');
module.exports.globalPath = execSync('yarn global dir').toString().trim() + '/node_modules/';