File tree 8 files changed +35
-12
lines changed
8 files changed +35
-12
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/string-capitalize/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 23
23
// MODULES //
24
24
25
25
var resolve = require ( 'path' ) . resolve ;
26
- var readFileSync = require ( '@stdlib/fs/ read-file' ) . sync ;
26
+ var readFileSync = require ( '@stdlib/fs- read-file' ) . sync ;
27
27
var CLI = require ( '@stdlib/cli' ) ;
28
- var stdin = require ( '@stdlib/process/ read-stdin' ) ;
29
- var stdinStream = require ( '@stdlib/streams/ node/ stdin' ) ;
30
- var reEOL = require ( '@stdlib/regexp/ eol' ) ;
28
+ var stdin = require ( '@stdlib/process- read-stdin' ) ;
29
+ var stdinStream = require ( '@stdlib/streams- node- stdin' ) ;
30
+ var reEOL = require ( '@stdlib/regexp- eol' ) ;
31
31
var capitalize = require ( './../lib' ) ;
32
32
33
33
Original file line number Diff line number Diff line change 21
21
/**
22
22
* Capitalize the first character in a string.
23
23
*
24
- * @module @stdlib /string/ capitalize
24
+ * @module @stdlib /string- capitalize
25
25
*
26
26
* @example
27
27
* var capitalize = require( '@stdlib/string-capitalize' );
Original file line number Diff line number Diff line change 56
56
"@stdlib/string-from-code-point" : " ^0.0.x" ,
57
57
"@stdlib/string-replace" : " ^0.0.x" ,
58
58
"tape" : " git+https://github.com/kgryte/tape.git#fix/globby" ,
59
+ "proxyquire" : " ^2.0.0" ,
59
60
"istanbul" : " ^0.4.1" ,
60
61
"tap-spec" : " 5.x.x"
61
62
},
You can’t perform that action at this time.
0 commit comments