File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -64,13 +64,14 @@ const getAllPackageEntryPoints = async () => {
64
64
65
65
const packageExports = await collectPackageJsonExports ( packageJson . exports )
66
66
67
- return [ ...new Set ( packageExports ) ]
67
+ return [ ...packageExports ]
68
68
}
69
69
70
70
/**
71
71
* Gets all import configurations for a given entry point.
72
- * This function dynamically imports the specified entry point and generates a size limit configuration
73
- * for each named export found within the module. It includes configurations for named imports,
72
+ * This function dynamically imports the specified entry point and
73
+ * generates a size limit configuration for each named export found
74
+ * within the module. It includes configurations for named imports,
74
75
* wildcard imports, and the default import.
75
76
*
76
77
* @param entryPoint - The entry point to import.
You can’t perform that action at this time.
0 commit comments