From dea973ace4d0ad5eb682ca7b17aa819dd3453be4 Mon Sep 17 00:00:00 2001 From: Sachinn-64 Date: Sat, 18 Jul 2026 22:42:22 +0530 Subject: [PATCH] refactor: use ctor conventions for aggregate-operations --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown_pkg_readmes status: passed - task: lint_markdown_docs status: na - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../{aggregate-operations => aggregate/operations}/README.md | 4 ++-- .../operations}/benchmark/benchmark.js | 0 .../operations}/docs/repl.txt | 0 .../operations}/docs/types/index.d.ts | 0 .../operations}/docs/types/test.ts | 0 .../operations}/examples/index.js | 0 .../operations}/lib/data.json | 0 .../operations}/lib/index.js | 4 ++-- .../operations}/lib/main.js | 0 .../operations}/package.json | 2 +- .../operations}/test/test.js | 0 11 files changed, 5 insertions(+), 5 deletions(-) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/README.md (98%) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/benchmark/benchmark.js (100%) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/docs/repl.txt (100%) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/docs/types/index.d.ts (100%) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/docs/types/test.ts (100%) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/examples/index.js (100%) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/lib/data.json (100%) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/lib/index.js (92%) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/lib/main.js (100%) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/package.json (95%) rename lib/node_modules/@stdlib/plot/vega/transform/{aggregate-operations => aggregate/operations}/test/test.js (100%) diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/README.md b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/README.md similarity index 98% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/README.md rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/README.md index 31f5ff81d777..8f50ead7fab5 100644 --- a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/README.md +++ b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/README.md @@ -37,7 +37,7 @@ limitations under the License. ## Usage ```javascript -var aggregateOperations = require( '@stdlib/plot/vega/transform/aggregate-operations' ); +var aggregateOperations = require( '@stdlib/plot/vega/transform/aggregate/operations' ); ``` #### aggregateOperations() @@ -71,7 +71,7 @@ var out = aggregateOperations(); ```javascript var contains = require( '@stdlib/array/base/assert/contains' ).factory; -var aggregateOperations = require( '@stdlib/plot/vega/transform/aggregate-operations' ); +var aggregateOperations = require( '@stdlib/plot/vega/transform/aggregate/operations' ); var isAggregateOperation = contains( aggregateOperations() ); diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/benchmark/benchmark.js b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/benchmark/benchmark.js similarity index 100% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/benchmark/benchmark.js rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/benchmark/benchmark.js diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/docs/repl.txt b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/docs/repl.txt similarity index 100% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/docs/repl.txt rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/docs/repl.txt diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/docs/types/index.d.ts b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/docs/types/index.d.ts similarity index 100% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/docs/types/index.d.ts rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/docs/types/index.d.ts diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/docs/types/test.ts b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/docs/types/test.ts similarity index 100% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/docs/types/test.ts rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/docs/types/test.ts diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/examples/index.js b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/examples/index.js similarity index 100% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/examples/index.js rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/examples/index.js diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/lib/data.json b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/lib/data.json similarity index 100% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/lib/data.json rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/lib/data.json diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/lib/index.js b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/lib/index.js similarity index 92% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/lib/index.js rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/lib/index.js index 44ccdb42d186..277603575eac 100644 --- a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/lib/index.js +++ b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/lib/index.js @@ -21,10 +21,10 @@ /** * Return a list of aggregate transform operations. * -* @module @stdlib/plot/vega/transform/aggregate-operations +* @module @stdlib/plot/vega/transform/aggregate/operations * * @example -* var aggregateOperations = require( '@stdlib/plot/vega/transform/aggregate-operations' ); +* var aggregateOperations = require( '@stdlib/plot/vega/transform/aggregate/operations' ); * * var out = aggregateOperations(); * // returns [ 'argmax', 'argmin', 'average', 'ci0', 'ci1', 'count', 'distinct', 'max', 'mean', 'median', 'min', 'missing', 'product', 'q1', 'q3', 'stderr', 'stdev', 'stdevp', 'sum', 'valid', 'values', 'variance', 'variancep' ] diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/lib/main.js b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/lib/main.js similarity index 100% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/lib/main.js rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/lib/main.js diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/package.json b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/package.json similarity index 95% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/package.json rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/package.json index 4d063c29f7d9..fffb7f26f8a8 100644 --- a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/package.json +++ b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/package.json @@ -1,5 +1,5 @@ { - "name": "@stdlib/plot/vega/transform/aggregate-operations", + "name": "@stdlib/plot/vega/transform/aggregate/operations", "version": "0.0.0", "description": "List of supported Vega aggregate transform operations.", "license": "Apache-2.0", diff --git a/lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/test/test.js b/lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/test/test.js similarity index 100% rename from lib/node_modules/@stdlib/plot/vega/transform/aggregate-operations/test/test.js rename to lib/node_modules/@stdlib/plot/vega/transform/aggregate/operations/test/test.js