From 456b0d77b94b3e4046e0b222a973b5aae401f015 Mon Sep 17 00:00:00 2001 From: Mehmet Can Farsak <32980057+mehmetcanfarsak@users.noreply.github.com> Date: Mon, 25 Mar 2024 03:39:28 +0300 Subject: [PATCH 1/2] Add How To Contribute Part to README --- README.md | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/README.md b/README.md index c6b531d..d69b2ff 100644 --- a/README.md +++ b/README.md @@ -64,3 +64,65 @@ console.log(getCountryFlagEmojiFromCountryCodeOrNameOrFlagEmoji("US")); // 🇺 console.log(getCountryDialCodeFromCountryCodeOrNameOrFlagEmoji("US")); // +1 ``` + +## How to Contribute + +Thank you for considering contributing to this project! Contributions are essential to keep the project thriving and improving. Below are steps on how you can contribute to the project: + +### 1. Fork the Repository + +- Navigate to the repository on GitHub. +- Click on the "Fork" button in the top-right corner of the page. +- This will create a copy of the repository in your GitHub account. + +### 2. Clone the Repository + +- On your GitHub account, find the forked repository. +- Click on the "Code" button and copy the URL provided. +- Open your terminal or command prompt. +- Use the `git clone` command followed by the URL to clone the repository to your local machine. + +```bash +git clone +``` + +### 3. Make Changes + +- Navigate to the project directory on your local machine. +- Make the necessary changes or additions to the files you want. Ensure your changes adhere to the project's contribution guidelines and formatting standards. + +### 4. Commit Your Changes + +- After making the desired changes, save the files you have changed. +- In your terminal or command prompt, navigate to the project directory. +- Use the following commands to stage and commit your changes: + +```bash +git add README.md # Replace README.md with the file you have changed +git commit -m "Brief description of changes" +``` + +### 5. Push Changes to Your Fork + +- Once committed, push your changes to your forked repository on GitHub: + +```bash +git push origin main +``` + +### 6. Submit a Pull Request + +- Go to your forked repository on GitHub. +- Click on the "Pull Request" button. +- Provide a brief description of the changes you've made in the pull request. +- Click on "Create Pull Request" to submit your changes for review. + +### 7. Await Review and Feedback + +- Your pull request will be reviewed as soon as possible. +- Be open to feedback and be willing to make further changes if necessary. +- Once approved, your changes will be merged into the main project. + +## Thank You! + +Thank you for taking the time to contribute to our project. Your efforts are greatly appreciated and help make the project better for everyone. If you have any questions or need further assistance, feel free to reach out via GitHub issues. Happy coding! From 082def321dde7d3c4ba187dd756c14b629ba8f41 Mon Sep 17 00:00:00 2001 From: Mehmet Can Farsak <32980057+mehmetcanfarsak@users.noreply.github.com> Date: Mon, 25 Mar 2024 03:42:15 +0300 Subject: [PATCH 2/2] add details about exported countries array --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index d69b2ff..84632d2 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,8 @@ import { getCountryCodeFromCountryCodeOrNameOrFlagEmoji, getCountryFlagEmojiFromCountryCodeOrNameOrFlagEmoji, getCountryDialCodeFromCountryCodeOrNameOrFlagEmoji, + countries, + CountryInterface, } from "country-codes-flags-phone-codes"; @@ -62,6 +64,7 @@ console.log(getCountryNameFromCountryCodeOrNameOrFlagEmoji("US")); // United Sta console.log(getCountryCodeFromCountryCodeOrNameOrFlagEmoji("United States")); // US console.log(getCountryFlagEmojiFromCountryCodeOrNameOrFlagEmoji("US")); // 🇺🇸 console.log(getCountryDialCodeFromCountryCodeOrNameOrFlagEmoji("US")); // +1 +console.log("countries", countries); // [{ name: 'United States', code: 'US', dialCode: '+1', flag: '🇺🇸' }, ...] ```