Fix datagrid pagination, document rsx:debug --eval, update jqhtml
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
9
node_modules/enhanced-resolve/lib/ExportsFieldPlugin.js
generated
vendored
Executable file → Normal file
9
node_modules/enhanced-resolve/lib/ExportsFieldPlugin.js
generated
vendored
Executable file → Normal file
@@ -114,9 +114,14 @@ module.exports = class ExportsFieldPlugin {
|
||||
}
|
||||
|
||||
if (paths.length === 0) {
|
||||
const conditions = [...this.conditionNames];
|
||||
const conditionsStr =
|
||||
conditions.length === 1
|
||||
? `the condition "${conditions[0]}"`
|
||||
: `the conditions ${JSON.stringify(conditions)}`;
|
||||
return callback(
|
||||
new Error(
|
||||
`Package path ${remainingRequest} is not exported from package ${request.descriptionFileRoot} (see exports field in ${request.descriptionFilePath})`,
|
||||
`"${remainingRequest}" is not exported under ${conditionsStr} from package ${request.descriptionFileRoot} (see exports field in ${request.descriptionFilePath})`,
|
||||
),
|
||||
);
|
||||
}
|
||||
@@ -150,7 +155,7 @@ module.exports = class ExportsFieldPlugin {
|
||||
|
||||
if (
|
||||
invalidSegmentRegEx.exec(relativePath.slice(2)) !== null &&
|
||||
deprecatedInvalidSegmentRegEx.test(relativePath.slice(2)) !== null
|
||||
deprecatedInvalidSegmentRegEx.test(relativePath.slice(2))
|
||||
) {
|
||||
if (paths.length === i) {
|
||||
return callback(
|
||||
|
||||
Reference in New Issue
Block a user