File tree 2 files changed +9
-13
lines changed 2 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -41,8 +41,8 @@ as you want/need to. Nobody can ask any more of you than that.
41
41
As a maintainer, you're fine to make your branches on the main repo or on your own fork. Either
42
42
way is fine.
43
43
44
- When we receive a pull request, a travis build is kicked off automatically (see the ` .travis.yml `
45
- for what runs in the travis build ). We avoid merging anything that breaks the travis build .
44
+ When we receive a pull request, a Circle CI build is kicked off automatically (see the ` .circleci/ `
45
+ directory for what runs in the CI pipeline ). We avoid merging anything that breaks the CI pipeline .
46
46
47
47
Please review PRs and focus on the code rather than the individual. You never know when this is
48
48
someone's first ever PR and we want their experience to be as positive as possible, so be
@@ -56,8 +56,8 @@ about that.
56
56
57
57
## Release
58
58
59
- Our releases are automatic. They happen whenever code lands into ` master ` . A travis build gets
60
- kicked off and if it's successful, a tool called
59
+ Our releases are automatic. They happen whenever code lands into ` master ` . A Circle CI build
60
+ build gets kicked off and if it's successful, a tool called
61
61
[ ` semantic-release ` ] ( https://github.com/semantic-release/semantic-release ) is used to
62
62
automatically publish a new release to npm as well as a changelog to GitHub. It is only able to
63
63
determine the version and whether a release is necessary by the git commit messages. With this
Original file line number Diff line number Diff line change @@ -16,22 +16,18 @@ const cwd = process.cwd()
16
16
const defaultRCFile = path . join ( cwd , '.all-contributorsrc' )
17
17
18
18
const yargv = yargs
19
+ . scriptName ( 'all-contributors' )
19
20
. help ( 'help' )
20
21
. alias ( 'h' , 'help' )
21
22
. alias ( 'v' , 'version' )
22
23
. version ( )
23
24
. recommendCommands ( )
24
- . command ( 'generate' , 'Generate the list of contributors' )
25
- . usage ( 'Usage: $0 generate' )
26
- . command ( 'add' , 'add a new contributor' )
27
- . usage ( 'Usage: $0 add <username> <contribution>' )
28
- . command ( 'init' , 'Prepare the project to be used with this tool' )
29
- . usage ( 'Usage: $0 init' )
25
+ . command ( 'generate' , `Generate the list of contributors\n\nUSAGE: all-contributors generate` )
26
+ . command ( 'add' , `Add a new contributor\n\nUSAGE: all-contributors add <username> <comma-separated contributions>` )
27
+ . command ( 'init' , `Prepare the project to be used with this tool\n\nUSAGE: all-contributors init` )
30
28
. command (
31
29
'check' ,
32
- 'Compares contributors from the repository with the ones credited in .all-contributorsrc' ,
33
- )
34
- . usage ( 'Usage: $0 check' )
30
+ `Compare contributors from the repository with the ones credited in .all-contributorsrc'\n\nUSAGE: all-contributors check` )
35
31
. boolean ( 'commit' )
36
32
. default ( 'files' , [ 'README.md' ] )
37
33
. default ( 'contributorsPerLine' , 7 )
You can’t perform that action at this time.
0 commit comments