From 08b0f9e4f6b3ffc9e9741977b802af89596f83d5 Mon Sep 17 00:00:00 2001 From: Jalajk3004 Date: Fri, 28 Feb 2025 06:24:41 +0000 Subject: [PATCH 01/11] fixed linting error: removed the cinstructor --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- lib/node_modules/@stdlib/_tools/github/get/lib/cache.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/_tools/github/get/lib/cache.js b/lib/node_modules/@stdlib/_tools/github/get/lib/cache.js index 31da3bab4bd4..41c218f54875 100644 --- a/lib/node_modules/@stdlib/_tools/github/get/lib/cache.js +++ b/lib/node_modules/@stdlib/_tools/github/get/lib/cache.js @@ -28,10 +28,13 @@ * @returns {Array} cache */ function create( size ) { - return new Array( size ); + const cache = []; + for (let i = 0; i < size; i++) { + cache.push(undefined); + } + return cache; } - // EXPORTS // module.exports = create; From 74aa861a56d43ef884ad29777ab6ab28f15874c6 Mon Sep 17 00:00:00 2001 From: Jalajk3004 Date: Fri, 28 Feb 2025 06:44:03 +0000 Subject: [PATCH 02/11] fixed linting error --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: passed - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: failed --- --- .../@stdlib/_tools/pkgs/browser-entry-points/lib/sync.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/_tools/pkgs/browser-entry-points/lib/sync.js b/lib/node_modules/@stdlib/_tools/pkgs/browser-entry-points/lib/sync.js index 7429d3b90311..0aab01830ff7 100644 --- a/lib/node_modules/@stdlib/_tools/pkgs/browser-entry-points/lib/sync.js +++ b/lib/node_modules/@stdlib/_tools/pkgs/browser-entry-points/lib/sync.js @@ -55,7 +55,7 @@ var debug = logger( 'browser-entry-points:sync' ); * var pkgs = [ '/foo/bar/baz' ]; * * var entries = entryPoints( pkgs ); -* // returns [{...}] +* // throws */ function entryPoints( pkgs, options ) { var results; From cb66756ec62053e24d80299b375a198e23342c3d Mon Sep 17 00:00:00 2001 From: Jalajk3004 Date: Fri, 28 Feb 2025 08:33:29 +0000 Subject: [PATCH 03/11] fixed the indented space in manifest.json --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- .../ndarray/base/assert/is-allowed-data-type-cast/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json b/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json index 59b37351e14f..e9eb20af99f6 100644 --- a/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json +++ b/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json @@ -35,7 +35,7 @@ "dependencies": [ "@stdlib/ndarray/base/assert/is-safe-data-type-cast", "@stdlib/ndarray/base/assert/is-mostly-safe-data-type-cast", - "@stdlib/ndarray/base/assert/is-same-kind-data-type-cast", + "@stdlib/ndarray/base/assert/is-same-kind-data-type-cast", "@stdlib/ndarray/casting-modes", "@stdlib/ndarray/dtypes" ] From 45138be1e3902abbeae96d97b6b8d5a78d313a93 Mon Sep 17 00:00:00 2001 From: Jalajk3004 Date: Fri, 28 Feb 2025 09:07:37 +0000 Subject: [PATCH 04/11] correct indent --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- .../@stdlib/ndarray/safe-casts/manifest.json | 65 ++++++++++--------- 1 file changed, 33 insertions(+), 32 deletions(-) diff --git a/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json b/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json index f999b07dc525..468e1cc45dd9 100644 --- a/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json +++ b/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json @@ -1,38 +1,39 @@ { "options": {}, "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } ], "confs": [ - { - "src": [], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/ndarray/dtypes" - ] - } + { + "src": [], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/ndarray/dtypes" + ] + } ] -} + } + \ No newline at end of file From 7f99836b2ea25e8224ff949128dd670ea5d36eff Mon Sep 17 00:00:00 2001 From: Jalajk3004 Date: Fri, 28 Feb 2025 09:25:05 +0000 Subject: [PATCH 05/11] uses space instead of tab --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- .../is-allowed-data-type-cast/manifest.json | 84 +++++++++---------- .../@stdlib/ndarray/safe-casts/manifest.json | 75 ++++++++--------- .../number/float64/base/signbit/manifest.json | 76 ++++++++--------- 3 files changed, 117 insertions(+), 118 deletions(-) diff --git a/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json b/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json index e9eb20af99f6..9331d5ffc82d 100644 --- a/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json +++ b/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json @@ -1,44 +1,44 @@ { - "options": {}, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/ndarray/base/assert/is-safe-data-type-cast", - "@stdlib/ndarray/base/assert/is-mostly-safe-data-type-cast", - "@stdlib/ndarray/base/assert/is-same-kind-data-type-cast", - "@stdlib/ndarray/casting-modes", - "@stdlib/ndarray/dtypes" - ] - } - ] + "options": {}, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/ndarray/base/assert/is-safe-data-type-cast", + "@stdlib/ndarray/base/assert/is-mostly-safe-data-type-cast", + "@stdlib/ndarray/base/assert/is-same-kind-data-type-cast", + "@stdlib/ndarray/casting-modes", + "@stdlib/ndarray/dtypes" + ] + } + ] } diff --git a/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json b/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json index 468e1cc45dd9..667fe17c8a93 100644 --- a/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json +++ b/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json @@ -1,39 +1,38 @@ { - "options": {}, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "src": [], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/ndarray/dtypes" - ] - } - ] - } - \ No newline at end of file + "options": {}, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "src": [], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/ndarray/dtypes" + ] + } + ] +} diff --git a/lib/node_modules/@stdlib/number/float64/base/signbit/manifest.json b/lib/node_modules/@stdlib/number/float64/base/signbit/manifest.json index e1403e5aa491..f5e66a98b285 100644 --- a/lib/node_modules/@stdlib/number/float64/base/signbit/manifest.json +++ b/lib/node_modules/@stdlib/number/float64/base/signbit/manifest.json @@ -1,40 +1,40 @@ { - "options": {}, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/number/float64/base/get-high-word" - ] - } - ] + "options": {}, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/number/float64/base/get-high-word" + ] + } + ] } From 8886a6bca95cc0e26820ffba83997ba7bd02e99c Mon Sep 17 00:00:00 2001 From: Jalajk3004 Date: Fri, 28 Feb 2025 16:29:52 +0000 Subject: [PATCH 06/11] fixes the JS linting error --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- .../makie/plugins/makie-install-node-addons/lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/_tools/makie/plugins/makie-install-node-addons/lib/index.js b/lib/node_modules/@stdlib/_tools/makie/plugins/makie-install-node-addons/lib/index.js index 187128b132e8..47847bddc23e 100644 --- a/lib/node_modules/@stdlib/_tools/makie/plugins/makie-install-node-addons/lib/index.js +++ b/lib/node_modules/@stdlib/_tools/makie/plugins/makie-install-node-addons/lib/index.js @@ -24,8 +24,8 @@ * @module @stdlib/_tools/makie/plugins/makie-install-node-addons * * @example -* var plugin = require( '@stdlib/_tools/makie/plugins/makie-install-node-addons' ); * var makie = require( '@stdlib/_tools/makie' ); +* var plugin = require( '@stdlib/_tools/makie/plugins/makie-install-node-addons' ); * var opts = { * 'plugins': { * 'benchmark': plugin @@ -43,4 +43,4 @@ var main = require( './main.js' ); // EXPORTS // -module.exports = main; +module.exports = main; \ No newline at end of file From 9c316c8a3ab93a47635cadbccb8fd47b3ca93dde Mon Sep 17 00:00:00 2001 From: Jalaj Kumar <142599224+jalajk3004@users.noreply.github.com> Date: Sat, 1 Mar 2025 10:38:29 +0530 Subject: [PATCH 07/11] Delete lib/node_modules/@stdlib/_tools/pkgs/browser-entry-points/lib/sync.js Signed-off-by: Jalaj Kumar <142599224+jalajk3004@users.noreply.github.com> --- .../pkgs/browser-entry-points/lib/sync.js | 104 ------------------ 1 file changed, 104 deletions(-) delete mode 100644 lib/node_modules/@stdlib/_tools/pkgs/browser-entry-points/lib/sync.js diff --git a/lib/node_modules/@stdlib/_tools/pkgs/browser-entry-points/lib/sync.js b/lib/node_modules/@stdlib/_tools/pkgs/browser-entry-points/lib/sync.js deleted file mode 100644 index 0aab01830ff7..000000000000 --- a/lib/node_modules/@stdlib/_tools/pkgs/browser-entry-points/lib/sync.js +++ /dev/null @@ -1,104 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2020 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var path = require( 'path' ); -var logger = require( 'debug' ); -var isStringArray = require( '@stdlib/assert/is-string-array' ).primitives; -var format = require( '@stdlib/string/format' ); -var copy = require( '@stdlib/utils/copy' ); -var cwd = require( '@stdlib/process/cwd' ); -var defaults = require( './defaults.json' ); -var validate = require( './validate.js' ); -var resolve = require( './resolve.sync.js' ); -var getEntries = require( './entries.sync.js' ); - - -// VARIABLES // - -var debug = logger( 'browser-entry-points:sync' ); - - -// MAIN // - -/** -* Synchronously resolves package browser entry points. -* -* @param {StringArray} pkgs - list of packages -* @param {Options} [options] - function options -* @param {string} [options.dir] - root directory from which to resolve packages -* @throws {TypeError} first argument must be an array of strings -* @throws {TypeError} callback argument must be a function -* @throws {TypeError} options argument must be an object -* @throws {TypeError} must provide valid options -* @returns {ObjectArray} entry points -* -* @example -* var pkgs = [ '/foo/bar/baz' ]; -* -* var entries = entryPoints( pkgs ); -* // throws -*/ -function entryPoints( pkgs, options ) { - var results; - var opts; - var err; - var dir; - if ( !isStringArray( pkgs ) ) { - throw new TypeError( format( 'invalid argument. First argument must be an array of strings. Value: `%s`.', pkgs ) ); - } - opts = copy( defaults ); - if ( arguments.length > 1 ) { - err = validate( opts, options ); - if ( err ) { - throw err; - } - } - debug( 'Options: %s', JSON.stringify( opts ) ); - if ( opts.dir ) { - dir = path.resolve( cwd(), opts.dir ); - } else { - dir = cwd(); - } - debug( 'Base directory: %s', dir ); - - debug( 'Resolving packages...' ); - results = resolve( pkgs, dir ); - if ( results instanceof Error ) { - debug( 'Encountered an error when resolving packages: %s', results.message ); - throw results; - } - debug( 'Successfully resolved packages.' ); - - debug( 'Determining entry points...' ); - results = getEntries( results ); - if ( results instanceof Error ) { - debug( 'Encountered an error when determining entry points: %s', results.message ); - throw results; - } - debug( 'Successfully determined entry points.' ); - return results; -} - - -// EXPORTS // - -module.exports = entryPoints; From 9b3311dca2fdbeba006156d43228e9a32dc5334f Mon Sep 17 00:00:00 2001 From: Jalaj Kumar <142599224+jalajk3004@users.noreply.github.com> Date: Sat, 1 Mar 2025 10:39:30 +0530 Subject: [PATCH 08/11] Delete lib/node_modules/@stdlib/_tools/github/get/lib/cache.js Signed-off-by: Jalaj Kumar <142599224+jalajk3004@users.noreply.github.com> --- .../@stdlib/_tools/github/get/lib/cache.js | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 lib/node_modules/@stdlib/_tools/github/get/lib/cache.js diff --git a/lib/node_modules/@stdlib/_tools/github/get/lib/cache.js b/lib/node_modules/@stdlib/_tools/github/get/lib/cache.js deleted file mode 100644 index 41c218f54875..000000000000 --- a/lib/node_modules/@stdlib/_tools/github/get/lib/cache.js +++ /dev/null @@ -1,40 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2018 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MAIN // - -/** -* Creates a response cache. -* -* @private -* @param {NonNegativeInteger} size - cache size -* @returns {Array} cache -*/ -function create( size ) { - const cache = []; - for (let i = 0; i < size; i++) { - cache.push(undefined); - } - return cache; -} - -// EXPORTS // - -module.exports = create; From 10087c96f1ae377d195191fc029acc4fc3a7433e Mon Sep 17 00:00:00 2001 From: Jalaj Kumar <142599224+jalajk3004@users.noreply.github.com> Date: Sat, 1 Mar 2025 10:39:42 +0530 Subject: [PATCH 09/11] Delete lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json Signed-off-by: Jalaj Kumar <142599224+jalajk3004@users.noreply.github.com> --- .../is-allowed-data-type-cast/manifest.json | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json diff --git a/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json b/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json deleted file mode 100644 index 9331d5ffc82d..000000000000 --- a/lib/node_modules/@stdlib/ndarray/base/assert/is-allowed-data-type-cast/manifest.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "options": {}, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/ndarray/base/assert/is-safe-data-type-cast", - "@stdlib/ndarray/base/assert/is-mostly-safe-data-type-cast", - "@stdlib/ndarray/base/assert/is-same-kind-data-type-cast", - "@stdlib/ndarray/casting-modes", - "@stdlib/ndarray/dtypes" - ] - } - ] -} From a6f1de23bd6eca6426e46a84cbb9f4bd28316623 Mon Sep 17 00:00:00 2001 From: Jalaj Kumar <142599224+jalajk3004@users.noreply.github.com> Date: Sat, 1 Mar 2025 10:40:06 +0530 Subject: [PATCH 10/11] Delete lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json Signed-off-by: Jalaj Kumar <142599224+jalajk3004@users.noreply.github.com> --- .../@stdlib/ndarray/safe-casts/manifest.json | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100644 lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json diff --git a/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json b/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json deleted file mode 100644 index 667fe17c8a93..000000000000 --- a/lib/node_modules/@stdlib/ndarray/safe-casts/manifest.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "options": {}, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "src": [], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/ndarray/dtypes" - ] - } - ] -} From 804300a4bb9b4c541df034c8e08ed55b964e52a1 Mon Sep 17 00:00:00 2001 From: Jalaj Kumar <142599224+jalajk3004@users.noreply.github.com> Date: Sat, 1 Mar 2025 10:40:26 +0530 Subject: [PATCH 11/11] Delete lib/node_modules/@stdlib/number/float64/base/signbit/manifest.json Signed-off-by: Jalaj Kumar <142599224+jalajk3004@users.noreply.github.com> --- .../number/float64/base/signbit/manifest.json | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 lib/node_modules/@stdlib/number/float64/base/signbit/manifest.json diff --git a/lib/node_modules/@stdlib/number/float64/base/signbit/manifest.json b/lib/node_modules/@stdlib/number/float64/base/signbit/manifest.json deleted file mode 100644 index f5e66a98b285..000000000000 --- a/lib/node_modules/@stdlib/number/float64/base/signbit/manifest.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "options": {}, - "fields": [ - { - "field": "src", - "resolve": true, - "relative": true - }, - { - "field": "include", - "resolve": true, - "relative": true - }, - { - "field": "libraries", - "resolve": false, - "relative": false - }, - { - "field": "libpath", - "resolve": true, - "relative": false - } - ], - "confs": [ - { - "src": [ - "./src/main.c" - ], - "include": [ - "./include" - ], - "libraries": [], - "libpath": [], - "dependencies": [ - "@stdlib/number/float64/base/get-high-word" - ] - } - ] -}