Closed mykola-mokhnach closed 7 years ago
@mykola-mokhnach you're the maintainer of this project now, so merge at will :-)
@jlipps should I also increase component version number every time I merge something new?
@mykola-mokhnach Do you mean in package.json
? Then no. That gets updated through publishing.
The process is:
npm version [major|minor|patch]
(which one depends on what sort of changes they are)npm publish
Step 3
will update the package.json
version number and create a tag in git.
How can I merge to master if I don't have write access to the repository?
Do you not? I thought that's what @jlipps was talking about.
ok @mykola-mokhnach i gave you owner rights over the whole appium org. use this awesome power with care :-)
also, I always add a step in between isaac's (2) and (3):
2b: rm -rf node_modules && npm install
, and rerun unit tests
just as a safety mechanism before publishing, to ensure that i'm getting all the latest deps that a new install would get.
Fixes the same problem as in https://github.com/appium/appium-uiautomator2-driver/pull/68