From 7f1592bfc0252a2f7bba90c09dc4e874cfeb500c Mon Sep 17 00:00:00 2001 From: Michael Krotscheck Date: Thu, 9 Jul 2015 11:30:41 -0700 Subject: [PATCH] Added npm default config. This patch adds an npmrc configuration file, which clears the default version tagging prefix. This brings this project in line with the standard tagging method used in openstack, rather than 'v1.0.0', it will use '1.0.0' as the tag. It also forces npm to attempt to gpg-sign any tags created via `npm version`. Change-Id: If7679f579b52633911bc5d6ee1f46dfae0104754 --- .npmrc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..03e14e9 --- /dev/null +++ b/.npmrc @@ -0,0 +1,5 @@ +; This value defaults to `v`. It is intentionally left blank to remove the default. +tag-version-prefix= + +; Force NPM to automatically try to sign any tags created by `npm version` +sign-git-tag=true