File tree Expand file tree Collapse file tree 5 files changed +9
-10
lines changed
Expand file tree Collapse file tree 5 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -148,11 +148,6 @@ indent_size = 2
148148indent_style = space
149149indent_size = 2
150150
151- # Set properties for `tslint.json` files:
152- [tslint.json ]
153- indent_style = space
154- indent_size = 2
155-
156151# Set properties for `tsconfig.json` files:
157152[tsconfig.json ]
158153indent_style = space
Original file line number Diff line number Diff line change 1+ 2023-12-01T03:17:19.346Z
Original file line number Diff line number Diff line change @@ -767,14 +767,16 @@ jobs:
767767 git checkout production
768768 git checkout -b cli
769769
770- # Copy files to cli directory:
771- - name : ' Copy files to cli directory'
770+ # Copy files to ` cli` directory:
771+ - name : ' Copy files to ` cli` directory'
772772 run : |
773773 mkdir -p cli
774774 mkdir -p cli/docs cli/test
775775 cp README.md LICENSE CONTRIBUTORS NOTICE ./cli
776776 cp -r bin etc ./cli
777- cp test/test.cli.js ./cli/test
777+ if [ -e "test/test.cli.js" ]; then
778+ cp test/test.cli.js ./cli/test
779+ fi
778780 if [ -d "test/fixtures" ]; then
779781 cp -r test/fixtures ./cli/test
780782 fi
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Brendan Graetz <bguiz@users.noreply.github.com>
99Bruno Fenzl <brunofenzl@gmail.com>
1010Christopher Dambamuromo <chridam@gmail.com>
1111Dan Rose <danoftheroses@gmail.com>
12+ Daniel Killenberger <daniel.killenberger@gmail.com>
1213Dominik Moritz <domoritz@gmail.com>
1314Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
1415Frank Kovacs <fran70kk@gmail.com>
Original file line number Diff line number Diff line change @@ -450,8 +450,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
450450[ npm-image ] : http://img.shields.io/npm/v/@stdlib/utils-parallel.svg
451451[ npm-url ] : https://npmjs.org/package/@stdlib/utils-parallel
452452
453- [ test-image ] : https://github.com/stdlib-js/utils-parallel/actions/workflows/test.yml/badge.svg?branch=v0.2.1
454- [ test-url ] : https://github.com/stdlib-js/utils-parallel/actions/workflows/test.yml?query=branch:v0.2.1
453+ [ test-image ] : https://github.com/stdlib-js/utils-parallel/actions/workflows/test.yml/badge.svg?branch=main
454+ [ test-url ] : https://github.com/stdlib-js/utils-parallel/actions/workflows/test.yml?query=branch:main
455455
456456[ coverage-image ] : https://img.shields.io/codecov/c/github/stdlib-js/utils-parallel/main.svg
457457[ coverage-url ] : https://codecov.io/github/stdlib-js/utils-parallel?branch=main
You can’t perform that action at this time.
0 commit comments