👍 First of all, thank you for taking the time to contribute! 👍
Help us keep a healthy and open community. We expect all participants in this project to adhere to the NativeScript Code Of Conduct.
-
Fork and clone the GitHub repository:
git clone https://github.com/your-username/nativescript-schematics.git
-
Add an 'upstream' remote pointing to the original repository:
cd nativescript-schematics git remote add upstream https://github.com/NativeScript/nativescript-schematics.git
-
Create a branch for your changes:
git checkout -b <my-fix-branch> master
-
Install dependencies:
npm install
The last command also runs npm prepare
which compiles the TypeScript files in the plugin.
While developing, you can run the npm run watch
command which will recompile on every change.
You are good to go! You're strongly encouraged to follow the official NativeScript Coding Conventions.
- Always update to the most recent master release; the bug may already be resolved.
- Search for similar issues in the issues list for this repo; it may already be an identified problem.
- If this is a bug or problem that is clear, simple, and is unlikely to require any discussion -- it is OK to open an issue on GitHub with a reproduction of the bug including workflows and screenshots. If possible, submit a Pull Request with a failing test, entire application or module. If you'd rather take matters into your own hands, fix the bug yourself (jump down to the Submitting a PR section).
- Use Github Issues to submit feature requests.
- First, search for a similar request and extend it if applicable. This way it would be easier for the community to track the features.
- When requesting a new feature, please provide as much detail as possible about why you need the feature in your apps. We prefer that you explain a need rather than explain a technical solution for it. That might trigger a nice conversation on finding the best and broadest technical solution to a specific need.
- To run the unit tests, execute the following command in the root of the project:
npm test
- The end-to-end (e2e) tests for this project are integrated within the internal build infrastructure for NativeScript. Because of that, they are not available for local execution. They will be executed internally when you submit a pull request.
-
Create one or several commits describing your changes. Follow the Angular commit message guidelines.
-
Push your branch to GitHub:
git push origin my-fix-branch
-
In GitHub, send a pull request to
nativescript-schematics:master
. If we suggest changes, then:- Make the required updates.
- Commit the changes to your branch (e.g.
my-fix-branch
). - Push the changes to your GitHub repository (this will update your PR).
-
If your branch gets outdated you may need to rebase it on top of the upstream master and force push to update your PR:
-
Fetch the latest changes
git fetch upstream
-
Check out to your fork's local
master
branchgit checkout master
-
Merge the original repo changes into your local
master
branchgit merge upstream/master
-
Rebase it on top of
master
git rebase -i master
-
Update your PR with force push
git push -f origin my-fix-branch
-
Thank you for your contribution!
- Run
npm install
to install the dependencies and prepare the package for publishing.
npm install
- Add the following to your
.npmrc
.
tag-version-prefix=""
message="release: cut the %s release"
- Create new branch for the release:
git checkout -b username/release-version
- Run
npm version
to bump the version in thepackage.json
, tag the release and update the CHANGELOG.md:
npm version [patch|minor|major]
- Push all changes to your branch and create a PR.
git push --set-upstream origin username/release-version --tags
- Publish the package to npm after the PR is merged.
npm publish