first commit
This commit is contained in:
31
node_modules/stylelint/lib/utils/emitDeprecationWarning.cjs
generated
vendored
Normal file
31
node_modules/stylelint/lib/utils/emitDeprecationWarning.cjs
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
// 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');
|
||||
|
||||
// Each code must be unique.
|
||||
const CODES = {
|
||||
COMMONJS_PLUGINS: '001',
|
||||
COMMONJS_NODEJS_API: '002',
|
||||
RESULT_OUTPUT_PROPERTY: '003',
|
||||
GITHUB_FORMATTER: '004',
|
||||
CONTEXT_FIX: '005',
|
||||
RULE: '006', // either removal or renaming
|
||||
};
|
||||
|
||||
/**
|
||||
* Use this function for deprecation warnings, instead of `process.emitWarning()`.
|
||||
*
|
||||
* @param {string} message
|
||||
* @param {keyof CODES} codeKey
|
||||
* @param {string} detail
|
||||
* @returns {void}
|
||||
*/
|
||||
function emitDeprecationWarning(message, codeKey, detail) {
|
||||
const code = CODES[codeKey];
|
||||
|
||||
process.emitWarning(message, { type: 'DeprecationWarning', code: `stylelint:${code}`, detail });
|
||||
}
|
||||
|
||||
module.exports = emitDeprecationWarning;
|
||||
Reference in New Issue
Block a user