Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit b16aa3a

Browse files
authored
Merge pull request #108 from dequelabs/publishing
docs: move publishing info to CONTRIBUTING.md
2 parents 358b48a + 5098d00 commit b16aa3a

2 files changed

Lines changed: 18 additions & 18 deletions

File tree

CONTRIBUTING.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,21 @@ To run axe-cli from your development environment, run:
6161
```
6262
node index.js www.deque.com
6363
```
64+
65+
## Publishing
66+
67+
Publishing `axe-cli` to the npm registry is handled by CircleCI. To publish a stable version, you'll do something like this:
68+
69+
```
70+
# Ensure you have the latest code
71+
$ git checkout develop
72+
$ git pull
73+
# Create a release branch
74+
$ git create-branch release-<YYYY-MM-DD>
75+
# Run the release script
76+
$ npm run release
77+
# push it
78+
$ git push --follow-tags origin release-<YYYY-MM-DD>
79+
```
80+
81+
Then open a release PR into the `master` branch.

README.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -175,21 +175,3 @@ To see additional information like test tool name, version and environment detai
175175
```
176176
axe www.deque.com --verbose
177177
```
178-
179-
## Publishing
180-
181-
Publishing `axe-cli` to the npm registry is handled by CircleCI. To publish a stable version, you'll do something like this:
182-
183-
```
184-
# Ensure you have the latest code
185-
$ git checkout develop
186-
$ git pull
187-
# Create a release branch
188-
$ git create-branch release-<YYYY-MM-DD>
189-
# Run the release script
190-
$ npm run release
191-
# push it
192-
$ git push --follow-tags origin release-<YYYY-MM-DD>
193-
```
194-
195-
Then open a release PR into the `master` branch.

0 commit comments

Comments
 (0)