Skip to content

Commit 94941cc

Browse files
committed
Meta tweaks
1 parent 8e14994 commit 94941cc

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: node_js
22
node_js:
3+
- '14'
34
- '12'
45
- '10'
56
- '8'

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ declare namespace cliSpinners {
8787
}
8888

8989
/**
90-
60+ spinners for use in the terminal.
90+
70+ spinners for use in the terminal.
9191
9292
@example
9393
```

license

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
"description": "Spinners for use in the terminal",
55
"license": "MIT",
66
"repository": "sindresorhus/cli-spinners",
7+
"funding": "https://github.com/sponsors/sindresorhus",
78
"author": {
89
"name": "Sindre Sorhus",
910
"email": "sindresorhus@gmail.com",
10-
"url": "sindresorhus.com"
11+
"url": "https://sindresorhus.com"
1112
},
1213
"engines": {
1314
"node": ">=6"

readme.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# cli-spinners [![Build Status](https://travis-ci.com/sindresorhus/cli-spinners.svg?branch=master)](https://travis-ci.com/sindresorhus/cli-spinners)
1+
# cli-spinners [![Build Status](https://travis-ci.com/sindresorhus/cli-spinners.svg?branch=master)](https://travis-ci.com/github/sindresorhus/cli-spinners)
22

3-
> 60+ spinners for use in the terminal
3+
> 70+ spinners for use in the terminal
44
55
<p align="center">
66
<br>
@@ -43,7 +43,7 @@ Each spinner comes with a recommended `interval` and an array of `frames`.
4343

4444
[See the spinners.](spinners.json)
4545

46-
`cliSpinners.random` will return a random spinner each time it's called.
46+
The `random` spinner will return a random spinner each time it's called.
4747

4848
## Related
4949

test.js

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ function unMockMathRandom() {
1414
}
1515
}
1616

17+
console.log('Spinner count:', Object.keys(cliSpinners).length);
18+
1719
test('main', t => {
1820
t.is(typeof cliSpinners, 'object');
1921
t.is(cliSpinners.dots.interval, 80);

0 commit comments

Comments
 (0)