mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
f5db27396a
* chore: Patch prop-types default export * touch
12 lines
467 B
Diff
12 lines
467 B
Diff
diff --git a/node_modules/prop-types/index.js b/node_modules/prop-types/index.js
|
|
index e9ef51d..b68512a 100644
|
|
--- a/node_modules/prop-types/index.js
|
|
+++ b/node_modules/prop-types/index.js
|
|
@@ -17,3 +17,6 @@ if (process.env.NODE_ENV !== 'production') {
|
|
// http://fb.me/prop-types-in-prod
|
|
module.exports = require('./factoryWithThrowingShims')();
|
|
}
|
|
+
|
|
+// ESM default export compatibility for bundlers like rolldown-vite
|
|
+module.exports.default = module.exports;
|