Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
68d45b4b9a | ||
|
99f44302fe | ||
|
1e9a212799 | ||
|
ca5490bdc5 | ||
|
0a80d40351 | ||
|
d3c891f39a |
@@ -12,11 +12,3 @@ addons:
|
|||||||
packages:
|
packages:
|
||||||
- gcc
|
- gcc
|
||||||
|
|
||||||
deploy:
|
|
||||||
provider: npm
|
|
||||||
email: ceberhardt@scottlogic.com
|
|
||||||
api_key:
|
|
||||||
secure: Vc9fsS/InXhvF8b3OIK5iTCRRB4ajUP73E5ObLiFYskVTCb5tLbl8rdYElV/uE2LF3Dw3SE9OyAARFPtkbUcmJ3A6YibEx5eKlPjWJZ8P0Pe85ap9XjopZzHzqpu+8kvZIPIQKUyisrD6RCRQdudT2uZKg2jvyvRwjnNVlVye4M=
|
|
||||||
on:
|
|
||||||
tags: true
|
|
||||||
branch: master
|
|
17
dist/README.md
vendored
Normal file
17
dist/README.md
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Releases can be found on [npm](https://www.npmjs.com/package/css-layout).
|
||||||
|
|
||||||
|
#Release Process
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Ensure that the local codebase is up to date
|
||||||
|
git fetch upstream master && git checkout FETCH_HEAD
|
||||||
|
|
||||||
|
# increment the version number and tag the release
|
||||||
|
npm version [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease]
|
||||||
|
|
||||||
|
# push the the commit and tag back to upstream
|
||||||
|
git push --tags upstream HEAD:master
|
||||||
|
|
||||||
|
# publish this new version to npm
|
||||||
|
npm publish
|
||||||
|
```
|
@@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "css-layout",
|
"name": "css-layout",
|
||||||
"version": "0.0.3",
|
"version": "0.0.6",
|
||||||
"description": "Reimplementation of CSS layout using pure JavaScript",
|
"description": "Reimplementation of CSS layout using pure JavaScript",
|
||||||
"main": "dist/css-layout.js",
|
"main": "dist/css-layout.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "grunt ci"
|
"test": "grunt ci",
|
||||||
|
"postversion": "git push --tags upstream HEAD:master"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
Reference in New Issue
Block a user