Skip to content

Commit 4cc8d7b

Browse files
committed
Auto-generated commit
1 parent e0bbfeb commit 4cc8d7b

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ A total of 1 person contributed to this release. Thank you to this contributor:
180180

181181
<details>
182182

183-
- [`6c020d3`](https://github.com/stdlib-js/stdlib/commit/6c020d33665c4aec232196fd86214b296ddc7d36) - **chore:** use relative paths to load package.json file _(by Philipp Burckhardt)_
184183
- [`b6a2b0b`](https://github.com/stdlib-js/stdlib/commit/b6a2b0b27dc8cc1e9fc02d9679a3ce468cf49b9d) - **docs:** update namespace table of contents [(#3192)](https://github.com/stdlib-js/stdlib/pull/3192) _(by stdlib-bot, Philipp Burckhardt)_
185184
- [`8b1548f`](https://github.com/stdlib-js/stdlib/commit/8b1548fb45c1ff131f5edac20cb984344a2d28ec) - **feat:** update namespace TypeScript declarations [(#3190)](https://github.com/stdlib-js/stdlib/pull/3190) _(by stdlib-bot, Philipp Burckhardt)_
186185

base/fill/benchmark/benchmark.1d_rowmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
2525
var pow = require( '@stdlib/math/base/special/pow' );
2626
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
2727
var shape2strides = require( './../../../base/shape2strides' );
28-
var pkg = require( './../package.json' ).name;
29-
var fill = require( './../lib' );
28+
var pkg = require( './../../../base/fill/package.json' ).name;
29+
var fill = require( './../../../base/fill/lib' );
3030

3131

3232
// VARIABLES //

base/fill/benchmark/benchmark.5d_columnmajor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ var pow = require( '@stdlib/math/base/special/pow' );
2727
var floor = require( '@stdlib/math/base/special/floor' );
2828
var filledarrayBy = require( '@stdlib/array/filled-by' );
2929
var shape2strides = require( './../../../base/shape2strides' );
30-
var pkg = require( './../package.json' ).name;
31-
var fill = require( './../lib' );
30+
var pkg = require( './../../../base/fill/package.json' ).name;
31+
var fill = require( './../../../base/fill/lib' );
3232

3333

3434
// VARIABLES //

0 commit comments

Comments
 (0)