Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Merged
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
19 changes: 17 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,26 @@ npm version patch

# 3. Update changelog.md with your changes

# 4. Push your changes to Github
# 4. Add your changes
git add -A
git commit -m "your commit message"

# 5. Push your changes to Github
git push origin master
```

Finally, publish these changes to NPM
Finally, you can choose to either publish the changes as release candidate so you can test it within a ~community remix
```
# 1. Locally, pull the latest changes from master

# 2. Publish to NPM
./sh/publish.sh shared-components --rc

# 3. Within your ~community remix, open up ~package.json and specify the version number of your release candidate.
e.g., "@fogcreek/shared-components": "^0.13.9-026d833.0"
```

...or you can publish it directly as a new version.
```
# 1. Locally, pull the latest changes from master

Expand Down