Skip to content

cleanup: remove trailing whitespace #99

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ createLibrary({
namespace: String, /* (Windows only!) The namespace for the Windows module (Default: The package identifier as PascalCase, which is `Com.Reactlibrary`) */
githubAccount: String, /* The github account where the library is hosted (Default: `github_account`) */
authorName: String, /* The author's name (Default: `Your Name`) */
authorEmail: String, /* The author's email (Default: `yourname@email.com`) */
authorEmail: String, /* The author's email (Default: `yourname@email.com`) */
license: String, /* The license type of this library (Default: `Apache-2.0`) */
generateExample: Boolean, /* Will generate a RN example project and link the new library to it (Default: `false`) */
}
Expand Down
8 changes: 4 additions & 4 deletions command.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,19 @@ ${emoji.get('arrow_right')} To get started type \`cd ./${name}\` and run \`npm
}, {
command: '--github-account [githubAccount]',
description: 'The github account where the library is hosted (Default: `github_account`)',
default: 'github_account',
default: 'github_account',
}, {
command: '--author-name [authorName]',
description: 'The author\'s name (Default: `Your Name`)',
default: 'Your Name',
default: 'Your Name',
}, {
command: '--author-email [authorEmail]',
description: 'The author\'s email (Default: `yourname@email.com`)',
default: 'yourname@email.com',
default: 'yourname@email.com',
}, {
command: '--license [license]',
description: 'The license type (Default: `Apache-2.0`)',
default: 'Apache-2.0',
default: 'Apache-2.0',
}, {
command: '--generate-example',
description: 'Generates an example project for iOS and Android and links the library to it',
Expand Down