From 99c3a88df4be5073ad557280c7d88f0feefa3618 Mon Sep 17 00:00:00 2001 From: Colin Eberhardt Date: Thu, 12 Nov 2015 11:52:07 +0000 Subject: [PATCH] Update release process to include a build step! See #149 --- dist/README.md | 5 ++++- package.json | 3 +-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/dist/README.md b/dist/README.md index 55c0151b..5be886d2 100644 --- a/dist/README.md +++ b/dist/README.md @@ -6,6 +6,9 @@ Releases can be found on [npm](https://www.npmjs.com/package/css-layout). # Ensure that the local codebase is up to date git fetch upstream master && git checkout FETCH_HEAD +# build the latest version of the library +grunt + # increment the version number and tag the release npm version [ | major | minor | patch | premajor | preminor | prepatch | prerelease] @@ -14,4 +17,4 @@ git push --tags upstream HEAD:master # publish this new version to npm npm publish -``` \ No newline at end of file +``` diff --git a/package.json b/package.json index e280235a..5faf00f3 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,7 @@ "main": "dist/css-layout.js", "scripts": { "watch": "grunt watch", - "test": "grunt ci", - "postversion": "git push --tags upstream HEAD:master" + "test": "grunt ci" }, "repository": { "type": "git",