diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:32:59 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:32:59 -0400 |
commit | 6dc1997577fab2c366781fd7048144935afa0012 (patch) | |
tree | 8918d28c7ab4342f0738985e37af1dfc42d0e93a /vendor/oojs/oojs-ui/README.md | |
parent | 150f94f051128f367bc89f6b7e5f57eb2a69fc62 (diff) | |
parent | fa89acd685cb09cdbe1c64cbb721ec64975bbbc1 (diff) |
Merge commit 'fa89acd'
# Conflicts:
# .gitignore
# extensions/ArchInterWiki.sql
Diffstat (limited to 'vendor/oojs/oojs-ui/README.md')
-rw-r--r-- | vendor/oojs/oojs-ui/README.md | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/vendor/oojs/oojs-ui/README.md b/vendor/oojs/oojs-ui/README.md index e537752e..0c0e427a 100644 --- a/vendor/oojs/oojs-ui/README.md +++ b/vendor/oojs/oojs-ui/README.md @@ -23,6 +23,8 @@ If you don't want to use npm, you can: 1. You can now copy the distribution files from the dist directory into your project. +1. You can see a suite of demos in `/demos` by executing:<br/>`$ npm run-script demos` + Versioning ---------- @@ -52,14 +54,20 @@ $ git remote update $ git checkout -B release -t origin/master # Ensure tests pass -$ npm install && npm test +$ npm install && composer update && npm test # Avoid using "npm version patch" because that creates # both a commit and a tag, and we shouldn't tag until after # the commit is merged. # Update release notes -# Copy the resulting list into a new section on History.md +# Copy the resulting list into a new section at the top of History.md and edit +# into five sub-sections, in order: +# * Breaking changes +# * Deprecations +# * Features +# * Styles +# * Code $ git log --format='* %s (%aN)' --no-merges --reverse v$(node -e 'console.log(require("./package.json").version);')...HEAD | grep -v "Localisation updates from" | sort $ edit History.md |