From 57e177c1c4667ff4ff5a2ddedc6e641c0fc3eb04 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 24 May 2026 04:13:10 +0000 Subject: [PATCH 1/3] refactor: use `main` as require alias in `stats/base/dists/frechet/mean` Rename the `var` alias bound to `require( './main.js' )` in `lib/index.js` from `mean` to `main`, and update the matching `module.exports` assignment. Brings the package into line with the canonical wrapper-module pattern used by 11/14 (78.6%) of sibling packages under `stats/base/dists/frechet` and 78% of packages under `stats/base/dists` ecosystem-wide. Internal-only rename: the module's public export value is unchanged. --- .../@stdlib/stats/base/dists/frechet/mean/lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/frechet/mean/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/frechet/mean/lib/index.js index 57fd2d6ea36c..4e072b3987fc 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/frechet/mean/lib/index.js +++ b/lib/node_modules/@stdlib/stats/base/dists/frechet/mean/lib/index.js @@ -35,9 +35,9 @@ // MODULES // -var mean = require( './main.js' ); +var main = require( './main.js' ); // EXPORTS // -module.exports = mean; +module.exports = main; From af42a9d190f905bfd95a8965b4fdc622078a09a8 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 24 May 2026 04:13:15 +0000 Subject: [PATCH 2/3] refactor: use `main` as require alias in `stats/base/dists/frechet/median` Rename the `var` alias bound to `require( './main.js' )` in `lib/index.js` from `median` to `main`, and update the matching `module.exports` assignment. Brings the package into line with the canonical wrapper-module pattern used by 11/14 (78.6%) of sibling packages under `stats/base/dists/frechet` and 78% of packages under `stats/base/dists` ecosystem-wide. Internal-only rename: the module's public export value is unchanged. --- .../@stdlib/stats/base/dists/frechet/median/lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/frechet/median/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/frechet/median/lib/index.js index 74598306fe9d..1862b46b98f8 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/frechet/median/lib/index.js +++ b/lib/node_modules/@stdlib/stats/base/dists/frechet/median/lib/index.js @@ -35,9 +35,9 @@ // MODULES // -var median = require( './main.js' ); +var main = require( './main.js' ); // EXPORTS // -module.exports = median; +module.exports = main; From 4ffab174853e9af2c549da9eb784a2811d693811 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 24 May 2026 04:13:20 +0000 Subject: [PATCH 3/3] refactor: use `main` as require alias in `stats/base/dists/frechet/mode` Rename the `var` alias bound to `require( './main.js' )` in `lib/index.js` from `mode` to `main`, and update the matching `module.exports` assignment. Brings the package into line with the canonical wrapper-module pattern used by 11/14 (78.6%) of sibling packages under `stats/base/dists/frechet` and 78% of packages under `stats/base/dists` ecosystem-wide. Internal-only rename: the module's public export value is unchanged. --- .../@stdlib/stats/base/dists/frechet/mode/lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/frechet/mode/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/frechet/mode/lib/index.js index de25c131a30c..91b9559c144c 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/frechet/mode/lib/index.js +++ b/lib/node_modules/@stdlib/stats/base/dists/frechet/mode/lib/index.js @@ -35,9 +35,9 @@ // MODULES // -var mode = require( './main.js' ); +var main = require( './main.js' ); // EXPORTS // -module.exports = mode; +module.exports = main;