Compare commits

...

4 Commits

Author SHA1 Message Date
Colin Eberhardt
1e9a212799 0.0.5 2015-08-21 09:20:12 +01:00
Colin Eberhardt
ca5490bdc5 updated npm login details - again! 2015-08-21 09:19:56 +01:00
Colin Eberhardt
0a80d40351 0.0.4 2015-08-21 09:10:17 +01:00
Colin Eberhardt
d3c891f39a Updated the release process
Trying base64 encoded npm credentials
2015-08-21 08:59:49 +01:00
3 changed files with 16 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ deploy:
provider: npm
email: ceberhardt@scottlogic.com
api_key:
secure: Vc9fsS/InXhvF8b3OIK5iTCRRB4ajUP73E5ObLiFYskVTCb5tLbl8rdYElV/uE2LF3Dw3SE9OyAARFPtkbUcmJ3A6YibEx5eKlPjWJZ8P0Pe85ap9XjopZzHzqpu+8kvZIPIQKUyisrD6RCRQdudT2uZKg2jvyvRwjnNVlVye4M=
secure: "Dk69FV717n91CRMv0UqzqZG6mrd4dSwd2PJDf1Fe0GOVPrVG9pmSTUmsk7JGli7EB57ovPGRhE/lcDGnlE+hEVw5DjZhGUUmZIFGg+FdcVomoiTRUYjRLwRUKEVxYw1TGCjJHm4rEx4qdkghahjf1YRYnivOn7ADhdH5THr7uQE="
on:
tags: true
branch: master

12
dist/README.md vendored Normal file
View File

@@ -0,0 +1,12 @@
Releases can be found on [npm](https://www.npmjs.com/package/dss-layout).
#Release Process
```bash
# Ensure that the local codebase is up to date
git fetch upstream master && git checkout FETCH_HEAD
npm version [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease]
```
This will take care of getting the latest version of `upstream/master`, updating the package.json, committing, tagging and pushing back to `upstream/master`. Travis will then take care of building the packages and pushing to npm.

View File

@@ -1,10 +1,11 @@
{
"name": "css-layout",
"version": "0.0.3",
"version": "0.0.5",
"description": "Reimplementation of CSS layout using pure JavaScript",
"main": "dist/css-layout.js",
"scripts": {
"test": "grunt ci"
"test": "grunt ci",
"postversion": "git push --tags upstream HEAD:master"
},
"repository": {
"type": "git",