Skip to content

Commit c8a736a

Browse files
committed
Auto-generated commit
1 parent 377cb15 commit c8a736a

File tree

8 files changed

+41
-18
lines changed

8 files changed

+41
-18
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* For the `eslint` rules of this project, consult the main repository at https://github.com/stdlib-js/stdlib */

.github/workflows/cancel.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Cancel Previous Runs
2+
3+
on: push
4+
5+
jobs:
6+
cancel:
7+
runs-on: ubuntu-latest
8+
timeout-minutes: 3
9+
steps:
10+
- uses: styfle/[email protected]
11+
with:
12+
workflow_id: >-
13+
benchmark.yml,
14+
examples.yml,
15+
test.yml,
16+
test_coverage.yml,
17+
test_install.yml,
18+
publish.yml
19+
access_token: ${{ github.token }}

.npmignore

+2-5
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@
1818

1919
# Files #
2020
#########
21+
CHANGELOG.md
2122
CODE_OF_CONDUCT.md
2223
CONTRIBUTING.md
2324
CONTRIBUTORS
2425
TODO.md
2526
ROADMAP.md
2627
.postinstall.json
28+
Makefile
2729

2830
# Directories #
2931
###############
@@ -39,11 +41,6 @@ workshops/
3941

4042
# Ignore test directories, except for testing dependency installation:
4143
**/test/
42-
!/deps/test/
43-
44-
# Only top-level directories:
45-
/etc/
46-
/docs/
4744

4845
# Compiled source #
4946
###################

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# CHANGELOG
2+
3+
> Package changelog.
4+
5+
See [GitHub Releases](https://github.com/stdlib-js/random-streams-minstd/releases) for the changelog.

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ FIND_BENCHMARKS_EXCLUDE_FLAGS ?= \
294294
FIND_BENCHMARKS_FLAGS ?= \
295295
-type f \
296296
-name "$(BENCHMARKS_PATTERN)" \
297-
-path "$(ROOT_DIR)/**/$(BENCHMARKS_FOLDER)/**" \
297+
-path "$(ROOT_DIR)/**$(BENCHMARKS_FOLDER)/**" \
298298
-regex "$(BENCHMARKS_FILTER)" \
299299
$(FIND_BENCHMARKS_EXCLUDE_FLAGS)
300300

@@ -314,7 +314,7 @@ FIND_EXAMPLES_EXCLUDE_FLAGS ?= \
314314
FIND_EXAMPLES_FLAGS ?= \
315315
-type f \
316316
-name "$(EXAMPLES_PATTERN)" \
317-
-path "$(ROOT_DIR)/**/$(EXAMPLES_FOLDER)/**" \
317+
-path "$(ROOT_DIR)/**$(EXAMPLES_FOLDER)/**" \
318318
-regex "$(EXAMPLES_FILTER)" \
319319
$(FIND_EXAMPLES_EXCLUDE_FLAGS)
320320

bin/cli

+10-10
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@
2424

2525
var proc = require( 'process' );
2626
var resolve = require( 'path' ).resolve;
27-
var readFileSync = require( '@stdlib/fs/read-file' ).sync;
28-
var writeFileSync = require( '@stdlib/fs/write-file' ).sync;
27+
var readFileSync = require( '@stdlib/fs-read-file' ).sync;
28+
var writeFileSync = require( '@stdlib/fs-write-file' ).sync;
2929
var CLI = require( '@stdlib/cli' );
30-
var stdout = require( '@stdlib/streams/node/stdout' );
31-
var cwd = require( '@stdlib/process/cwd' );
32-
var Uint8Array = require( '@stdlib/array/uint8' );
33-
var Int32Array = require( '@stdlib/array/int32' );
34-
var isUint8Array = require( '@stdlib/assert/is-uint8array' );
35-
var isInteger = require( '@stdlib/assert/is-integer' ).isPrimitive;
36-
var gcopy = require( '@stdlib/blas/base/gcopy' );
37-
var array2buffer = require( '@stdlib/buffer/from-array' );
30+
var stdout = require( '@stdlib/streams-node-stdout' );
31+
var cwd = require( '@stdlib/process-cwd' );
32+
var Uint8Array = require( '@stdlib/array-uint8' );
33+
var Int32Array = require( '@stdlib/array-int32' );
34+
var isUint8Array = require( '@stdlib/assert-is-uint8array' );
35+
var isInteger = require( '@stdlib/assert-is-integer' ).isPrimitive;
36+
var gcopy = require( '@stdlib/blas-base-gcopy' );
37+
var array2buffer = require( '@stdlib/buffer-from-array' );
3838
var randomStream = require( './../lib' );
3939

4040

lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* Create a readable stream for generating pseudorandom numbers via a linear congruential pseudorandom number generator (LCG) based on Park and Miller.
2323
*
24-
* @module @stdlib/random/streams/minstd
24+
* @module @stdlib/random-streams-minstd
2525
*
2626
* @example
2727
* var inspectStream = require( '@stdlib/streams-node-inspect-sink' );

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@
8989
"@stdlib/string-replace": "^0.0.x",
9090
"@stdlib/time-now": "^0.0.x",
9191
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
92+
"proxyquire": "^2.0.0",
9293
"istanbul": "^0.4.1",
9394
"tap-spec": "5.x.x"
9495
},

0 commit comments

Comments
 (0)