From 635efa8f5682ddd21055da5e90d7eb3420dbb10b Mon Sep 17 00:00:00 2001 From: Hoon Kim <40356749+hoonsubin@users.noreply.github.com> Date: Fri, 30 Oct 2020 19:54:59 -0700 Subject: [PATCH] added contribution guide (#6) --- CONTRIBUTING.md | 41 +++++++++++++++++++++++++++++++++++++++++ README.md | 10 ++++++++++ package.json | 2 +- src/cli/index.ts | 2 +- 4 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..72837db --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,41 @@ +# Contributing + +[fork]: /fork +[pr]: /compare +[style]: https://standardjs.com/ +[code-of-conduct]: CODE_OF_CONDUCT.md + +Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great. + +Please note that this project is released with a [Contributor Code of Conduct][code-of-conduct]. By participating in this project you agree to abide by its terms. + +## Issues and PRs + +If you have suggestions for how this project could be improved, or want to report a bug, open an issue! We'd love all and any contributions. If you have questions, too, we'd love to hear them. + +We'd also love PRs. If you're thinking of a large PR, we advise opening up an issue first to talk about it, though! Look at the links below if you're not sure how to open a PR. + +## Submitting a pull request + +1. [Fork][fork] and clone the repository. +1. Configure and install the dependencies: `yarn`. +1. Make sure the tests pass on your machine: `yarn test`, note: these tests also apply the linter, so there's no need to lint separately. +1. Create a new branch: `git checkout -b my-branch-name`. +1. Make your change, add tests, and make sure the tests still pass. +1. Push to your fork and [submit a pull request][pr]. +1. Pat your self on the back and wait for your pull request to be reviewed and merged. + +Here are a few things you can do that will increase the likelihood of your pull request being accepted: + +- Prevent any linting errors. +- Write and update tests. +- Keep your changes as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests. +- Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html). + +Work in Progress pull requests are also welcome to get feedback early on, or if there is something blocked you. + +## Resources + +- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) +- [Using Pull Requests](https://help.github.com/articles/about-pull-requests/) +- [GitHub Help](https://help.github.com) diff --git a/README.md b/README.md index 17d1a56..41b8699 100644 --- a/README.md +++ b/README.md @@ -159,3 +159,13 @@ Before you start using this tool, first, you need to allow pushes to your Glitch Details about this process can be found from [here](https://glitch.happyfox.com/kb/article/85-how-do-i-push-code-that-i-created-locally-to-my-project-on-glitch/). But in short, you just have to type `git config receive.denyCurrentBranch updateInstead` on your Glitch project terminal and copy the repository link. + +## Contributing + +If you have suggestions for how Unity Push Checker could be improved, or want to report a bug, open an issue! We'd love all and any contributions. + +For more, check out the [Contributing Guide](CONTRIBUTING.md). + +## License + +[MIT](LICENSE) © 2020 Hoon Kim \ No newline at end of file diff --git a/package.json b/package.json index cec3f11..f4e7a19 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "glitch-deploy-tool", - "version": "0.1.0-alpha", + "version": "0.1.1-alpha", "description": "CLI tool for deploying files to Glitch.com", "keywords": [ "glitch.com", diff --git a/src/cli/index.ts b/src/cli/index.ts index 169a55d..3dc0816 100644 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -134,7 +134,7 @@ const checkToolMode = () => { // print the tool version if (opts.version) { //todo: dynamically parse the version - console.log(`glitch-deploy-tool version 1.0.0-alpha`); + console.log(`glitch-deploy-tool version 0.1.1-alpha`); process.exit(0); }