This advice also applies to Scribe plugins.
See the wiki page on labels for an explanation about how we categorise the project issues.
Assign yourself to the issue or comment on it to indicate that you are going to work on it.
- Add a failing test
- Create isolated cases for browser inconsistencies (see https://github.com/guardian/scribe/blob/master/BROWSERINCONSISTENCIES.md)
- No assumptions should be made in the code – comment every little detail with references to isolated cases (when dealing with browser inconsistencies)
Please see the wiki for details of how to run the scribe test suite.
git checkout master
- Run
./release.sh [ <newversion> | major | minor | patch | build ]
(we use mversion). (If releasing a plugin, run the script inside this repository from the plugin’s directory.) - Checkout the
dist
branch to check you're happy with the compilation result. If you are, rungit push; git push --tags
. (Thedist
tree is for distribution via Bower).
git checkout master
.- Update
CHANGELOG.md
- Update the version number in
package.json
- Commit with message of
v<number>
git push
- Run
npm publish
git checkout gh-pages
git pull
- Update necessary dependency versions in
bower.json
. Checkbower ls
to see which components need updating. bower install
bower prune
git add --update .
(don't include untracked files from source Bower components)- Commit using version number as the message (OR plugin version)
git push
- In documentation and code, refer to nodes by their canonical node name in
uppercase. E.g.
P
. - When creating variables that refer to nodes or elements, suffix them with
node
orelement
respectively. E.g.pElement
ortextNode
.
- Paste bin: http://jsfiddle.net/OliverJAsh/z8FTb/