File tree Expand file tree Collapse file tree 8 files changed +34
-11
lines changed
Expand file tree Collapse file tree 8 files changed +34
-11
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+ - uses : styfle/cancel-workflow-action@0.9.0
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 1818
1919# Files #
2020# ########
21+ CHANGELOG.md
2122CODE_OF_CONDUCT.md
2223CONTRIBUTING.md
2324CONTRIBUTORS
2425TODO.md
2526ROADMAP.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# ##################
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/fs-write-file/releases ) for the changelog.
Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ FIND_BENCHMARKS_EXCLUDE_FLAGS ?= \
294294FIND_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 ?= \
314314FIND_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
Original file line number Diff line number Diff line change 2323// MODULES //
2424
2525var resolve = require ( 'path' ) . resolve ;
26- var readFileSync = require ( '@stdlib/fs/ read-file' ) . sync ;
26+ var readFileSync = require ( '@stdlib/fs- read-file' ) . sync ;
2727var CLI = require ( '@stdlib/cli' ) ;
28- var stdin = require ( '@stdlib/process/ read-stdin' ) ;
29- var cwd = require ( '@stdlib/process/ cwd' ) ;
28+ var stdin = require ( '@stdlib/process- read-stdin' ) ;
29+ var cwd = require ( '@stdlib/process- cwd' ) ;
3030var writeFile = require ( './../lib' ) ;
3131
3232
Original file line number Diff line number Diff line change 2121/**
2222* Write data to a file.
2323*
24- * @module @stdlib /fs/ write-file
24+ * @module @stdlib /fs- write-file
2525*
2626* @example
2727* var writeFile = require( '@stdlib/fs-write-file' );
Original file line number Diff line number Diff line change 5555 "@stdlib/process-exec-path" : " ^0.0.x" ,
5656 "@stdlib/string-replace" : " ^0.0.x" ,
5757 "tape" : " git+https://github.com/kgryte/tape.git#fix/globby" ,
58+ "proxyquire" : " ^2.0.0" ,
5859 "istanbul" : " ^0.4.1" ,
5960 "tap-spec" : " 5.x.x"
6061 },
You can’t perform that action at this time.
0 commit comments