From 15bdfc259a245f72275b01685d832394fa1241fe Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 10 May 2026 00:26:49 +0000 Subject: [PATCH 1/4] chore: rename internal variable to `main` in `@stdlib/datasets/afinn-111` Renames the internal `lib/index.js` binding from `afinn111` to `main`, matching the canonical stdlib `lib/index.js` shape (~92% conformance across 5028 lib/index.js files; 53/57 conformance within `@stdlib/datasets`). The variable is local to the file and has no observable effect on the public API. --- lib/node_modules/@stdlib/datasets/afinn-111/lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/datasets/afinn-111/lib/index.js b/lib/node_modules/@stdlib/datasets/afinn-111/lib/index.js index 3166dccbdab0..364f1c6a8819 100644 --- a/lib/node_modules/@stdlib/datasets/afinn-111/lib/index.js +++ b/lib/node_modules/@stdlib/datasets/afinn-111/lib/index.js @@ -31,9 +31,9 @@ // MODULES // -var afinn111 = require( './main.js' ); +var main = require( './main.js' ); // EXPORTS // -module.exports = afinn111; +module.exports = main; From 383dbfe853708f96a00d5a8e9e78544e06b8ce6f Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 10 May 2026 00:26:53 +0000 Subject: [PATCH 2/4] chore: rename internal variable to `main` in `@stdlib/datasets/afinn-96` Renames the internal `lib/index.js` binding from `afinn96` to `main`, matching the canonical stdlib `lib/index.js` shape (~92% conformance across 5028 lib/index.js files; 53/57 conformance within `@stdlib/datasets`). The variable is local to the file and has no observable effect on the public API. --- lib/node_modules/@stdlib/datasets/afinn-96/lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/datasets/afinn-96/lib/index.js b/lib/node_modules/@stdlib/datasets/afinn-96/lib/index.js index e85863f0d9f9..c85ddb6b9451 100644 --- a/lib/node_modules/@stdlib/datasets/afinn-96/lib/index.js +++ b/lib/node_modules/@stdlib/datasets/afinn-96/lib/index.js @@ -31,9 +31,9 @@ // MODULES // -var afinn96 = require( './main.js' ); +var main = require( './main.js' ); // EXPORTS // -module.exports = afinn96; +module.exports = main; From d2479d93b573533c2a77d6eae0b241d77d407695 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 10 May 2026 00:26:59 +0000 Subject: [PATCH 3/4] chore: rename internal variable to `main` in `@stdlib/datasets/minard-napoleons-march` Renames the internal `lib/index.js` binding from `minard` to `main`, matching the canonical stdlib `lib/index.js` shape (~92% conformance across 5028 lib/index.js files; 53/57 conformance within `@stdlib/datasets`). The variable is local to the file and has no observable effect on the public API. --- .../@stdlib/datasets/minard-napoleons-march/lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/datasets/minard-napoleons-march/lib/index.js b/lib/node_modules/@stdlib/datasets/minard-napoleons-march/lib/index.js index 4c4c6f4faf75..b56a2620efd2 100644 --- a/lib/node_modules/@stdlib/datasets/minard-napoleons-march/lib/index.js +++ b/lib/node_modules/@stdlib/datasets/minard-napoleons-march/lib/index.js @@ -42,9 +42,9 @@ // MODULES // -var minard = require( './main.js' ); +var main = require( './main.js' ); // EXPORTS // -module.exports = minard; +module.exports = main; From cf84a4bb16296f225a4d51c695b03bd5315b0474 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 10 May 2026 00:27:03 +0000 Subject: [PATCH 4/4] chore: rename internal variable to `main` in `@stdlib/datasets/month-names-en` Renames the internal `lib/index.js` binding from `months` to `main`, matching the canonical stdlib `lib/index.js` shape (~92% conformance across 5028 lib/index.js files; 53/57 conformance within `@stdlib/datasets`). The variable is local to the file and has no observable effect on the public API. --- lib/node_modules/@stdlib/datasets/month-names-en/lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/datasets/month-names-en/lib/index.js b/lib/node_modules/@stdlib/datasets/month-names-en/lib/index.js index 784c6d1495e6..88783d9128ad 100644 --- a/lib/node_modules/@stdlib/datasets/month-names-en/lib/index.js +++ b/lib/node_modules/@stdlib/datasets/month-names-en/lib/index.js @@ -32,9 +32,9 @@ // MODULES // -var months = require( './main.js' ); +var main = require( './main.js' ); // EXPORTS // -module.exports = months; +module.exports = main;