first commit
This commit is contained in:
47
node_modules/stylelint/lib/printConfig.cjs
generated
vendored
Normal file
47
node_modules/stylelint/lib/printConfig.cjs
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
// NOTICE: This file is generated by Rollup. To modify it,
|
||||
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
||||
'use strict';
|
||||
|
||||
const process = require('node:process');
|
||||
const globby = require('globby');
|
||||
const resolveConfig = require('./resolveConfig.cjs');
|
||||
|
||||
/** @import {Config as StylelintConfig} from 'stylelint' */
|
||||
|
||||
/**
|
||||
* @param {import('stylelint').LinterOptions} options
|
||||
* @returns {Promise<StylelintConfig | null>}
|
||||
*/
|
||||
async function printConfig({
|
||||
cwd = process.cwd(),
|
||||
code,
|
||||
config,
|
||||
configBasedir,
|
||||
configFile,
|
||||
globbyOptions,
|
||||
files,
|
||||
}) {
|
||||
const isCodeNotFile = code !== undefined;
|
||||
const filePath = files && files[0];
|
||||
|
||||
if (!files || files.length !== 1 || !filePath || isCodeNotFile) {
|
||||
return Promise.reject(
|
||||
new Error('The --print-config option must be used with exactly one file path.'),
|
||||
);
|
||||
}
|
||||
|
||||
if (globby.hasMagic(filePath)) {
|
||||
return Promise.reject(new Error('The --print-config option does not support globs.'));
|
||||
}
|
||||
|
||||
return (
|
||||
(await resolveConfig(filePath, {
|
||||
cwd: (globbyOptions && globbyOptions.cwd) || cwd,
|
||||
config,
|
||||
configBasedir,
|
||||
configFile,
|
||||
})) || null
|
||||
);
|
||||
}
|
||||
|
||||
module.exports = printConfig;
|
||||
Reference in New Issue
Block a user