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

filterFilePaths.js « utils « lib « stylelint « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e25f05107e14ca76e47e3b73d871e45395befbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict';

const { isPathValid } = require('ignore').default;

/**
 * @param {import('ignore').Ignore} ignorer
 * @param {string[]} filePaths
 * @returns {string[]}
 */
module.exports = function filterFilePaths(ignorer, filePaths) {
	const validForIgnore = filePaths.filter(isPathValid);
	// Paths which starts with `..` are not valid for `ignore`, e. g. `../style.css`
	const notValidForIgnore = filePaths.filter((p) => !validForIgnore.includes(p));

	const filteredByIgnore = ignorer.filter(validForIgnore);

	// Preserving files order, while removing paths which were filtered by `ignore`
	return filePaths.filter((p) => notValidForIgnore.includes(p) || filteredByIgnore.includes(p));
};