File tree 8 files changed +41
-18
lines changed
8 files changed +41
-18
lines changed Original file line number Diff line number Diff line change
1
+ /* For the `eslint` rules of this project, consult the main repository at https://github.com/stdlib-js/stdlib */
Original file line number Diff line number Diff line change
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
+
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 }}
Original file line number Diff line number Diff line change 18
18
19
19
# Files #
20
20
# ########
21
+ CHANGELOG.md
21
22
CODE_OF_CONDUCT.md
22
23
CONTRIBUTING.md
23
24
CONTRIBUTORS
24
25
TODO.md
25
26
ROADMAP.md
26
27
.postinstall.json
28
+ Makefile
27
29
28
30
# Directories #
29
31
# ##############
@@ -39,11 +41,6 @@ workshops/
39
41
40
42
# Ignore test directories, except for testing dependency installation:
41
43
** /test /
42
- ! /deps /test /
43
-
44
- # Only top-level directories:
45
- /etc /
46
- /docs /
47
44
48
45
# Compiled source #
49
46
# ##################
Original file line number Diff line number Diff line change
1
+ # CHANGELOG
2
+
3
+ > Package changelog.
4
+
5
+ See [ GitHub Releases] ( https://github.com/stdlib-js/random-streams-minstd/releases ) for the changelog.
Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ FIND_BENCHMARKS_EXCLUDE_FLAGS ?= \
294
294
FIND_BENCHMARKS_FLAGS ?= \
295
295
-type f \
296
296
-name "$(BENCHMARKS_PATTERN ) " \
297
- -path "$(ROOT_DIR ) /**/ $(BENCHMARKS_FOLDER ) /**" \
297
+ -path "$(ROOT_DIR ) /**$(BENCHMARKS_FOLDER ) /**" \
298
298
-regex "$(BENCHMARKS_FILTER ) " \
299
299
$(FIND_BENCHMARKS_EXCLUDE_FLAGS )
300
300
@@ -314,7 +314,7 @@ FIND_EXAMPLES_EXCLUDE_FLAGS ?= \
314
314
FIND_EXAMPLES_FLAGS ?= \
315
315
-type f \
316
316
-name "$(EXAMPLES_PATTERN ) " \
317
- -path "$(ROOT_DIR ) /**/ $(EXAMPLES_FOLDER ) /**" \
317
+ -path "$(ROOT_DIR ) /**$(EXAMPLES_FOLDER ) /**" \
318
318
-regex "$(EXAMPLES_FILTER ) " \
319
319
$(FIND_EXAMPLES_EXCLUDE_FLAGS )
320
320
Original file line number Diff line number Diff line change 24
24
25
25
var proc = require ( 'process' ) ;
26
26
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 ;
29
29
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' ) ;
38
38
var randomStream = require ( './../lib' ) ;
39
39
40
40
Original file line number Diff line number Diff line change 21
21
/**
22
22
* Create a readable stream for generating pseudorandom numbers via a linear congruential pseudorandom number generator (LCG) based on Park and Miller.
23
23
*
24
- * @module @stdlib /random/ streams/ minstd
24
+ * @module @stdlib /random- streams- minstd
25
25
*
26
26
* @example
27
27
* var inspectStream = require( '@stdlib/streams-node-inspect-sink' );
Original file line number Diff line number Diff line change 89
89
"@stdlib/string-replace" : " ^0.0.x" ,
90
90
"@stdlib/time-now" : " ^0.0.x" ,
91
91
"tape" : " git+https://github.com/kgryte/tape.git#fix/globby" ,
92
+ "proxyquire" : " ^2.0.0" ,
92
93
"istanbul" : " ^0.4.1" ,
93
94
"tap-spec" : " 5.x.x"
94
95
},
You can’t perform that action at this time.
0 commit comments