Skip to content

Commit 5917a86

Browse files
committed
Auto-generated commit
1 parent 2e06487 commit 5917a86

File tree

7 files changed

+6
-4
lines changed

7 files changed

+6
-4
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/npm_downloads.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
# Run this workflow weekly:
2525
schedule:
2626
# cron: '<minutes> <hours> <day_of_month> <month> <day_of_week>'
27-
- cron: '0 8 * * 6'
27+
- cron: '51 15 * * 1'
2828

2929
# Allow the workflow to be manually run:
3030
workflow_dispatch:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
# Run workflow on a weekly schedule:
2525
schedule:
2626
# * is a special character in YAML so you have to quote this string
27-
- cron: '30 1 * * 6'
27+
- cron: '51 15 * * 1'
2828

2929
# Allow the workflow to be manually run:
3030
workflow_dispatch:

.github/workflows/test_install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
# Run workflow on a weekly schedule:
2525
schedule:
2626
# * is a special character in YAML so you have to quote this string
27-
- cron: '30 1 * * 6'
27+
- cron: '51 15 * * 1'
2828

2929
# Run workflow upon completion of `publish` workflow run:
3030
workflow_run:

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Milan Raj <rajsite@users.noreply.github.com>
2020
Momtchil Momtchev <momtchil@momtchev.com>
2121
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
2222
Philipp Burckhardt <pburckhardt@outlook.com>
23+
Pranav <85227306+Pranavchiku@users.noreply.github.com>
2324
Ricky Reusser <rsreusser@gmail.com>
2425
Ryan Seal <splrk@users.noreply.github.com>
2526
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"@stdlib/assert-is-boolean": "^0.0.x",
4747
"@stdlib/bench": "^0.0.x",
4848
"@stdlib/math-base-special-pow": "^0.0.x",
49+
"@stdlib/object-ctor": "^0.0.x",
4950
"@stdlib/symbol-ctor": "^0.0.x",
5051
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5152
"istanbul": "^0.4.1",

test/test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
var tape = require( 'tape' );
2424
var Symbol = require( '@stdlib/symbol-ctor' );
25+
var Object = require( '@stdlib/object-ctor' );
2526
var hasSymbols = require( '@stdlib/assert-has-symbol-support' );
2627
var isSymbolArray = require( './../lib' );
2728

0 commit comments

Comments
 (0)