Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
43 lines
968 B
JavaScript
43 lines
968 B
JavaScript
'use strict';
|
|
|
|
const resolveConfig = require('./resolveConfig');
|
|
const globby = require('globby');
|
|
|
|
/** @typedef {import('stylelint').Config} StylelintConfig */
|
|
|
|
/**
|
|
* @param {import('stylelint').LinterOptions} options
|
|
* @returns {Promise<StylelintConfig | null>}
|
|
*/
|
|
module.exports = 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
|
|
);
|
|
};
|