File tree 6 files changed +30
-8
lines changed
6 files changed +30
-8
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/utils-dirname/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 21
21
/**
22
22
* Return a directory name.
23
23
*
24
- * @module @stdlib /utils/ dirname
24
+ * @module @stdlib /utils- dirname
25
25
*
26
26
* @example
27
27
* var dirname = require( '@stdlib/utils-dirname' );
You can’t perform that action at this time.
0 commit comments