From 279131080be36db70a917bb87a55d95087d492f8 Mon Sep 17 00:00:00 2001 From: Antonio Laguna Date: Mon, 6 Dec 2021 09:02:18 +0100 Subject: [PATCH] Creating global `.npmrc` (#63) * Adding global npmrc to avoid tags happening * Housekeeping * Fixing email --- .npmrc | 1 + CODE_OF_CONDUCT.md | 2 +- package.json | 2 +- packages/base-cli/package.json | 2 +- plugins/postcss-base-plugin/package.json | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..32fd3a789 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +git-tag-version=false diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 2955a8a27..b17675385 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -55,7 +55,7 @@ a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting Vladimir Kharlampidi . All +reported by contacting Jonathan Neal . All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. diff --git a/package.json b/package.json index b071586b3..ad8a7e968 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@csstools/postcss-plugins", - "private": "true", + "private": true, "version": "1.0.0", "description": "", "author": "Jonathan Neal ", diff --git a/packages/base-cli/package.json b/packages/base-cli/package.json index db4aa9843..8bdaf57b5 100644 --- a/packages/base-cli/package.json +++ b/packages/base-cli/package.json @@ -1,6 +1,6 @@ { "name": "@csstools/base-cli", - "private": "true", + "private": true, "version": "0.1.0", "description": "A base for CLI versions of plugins", "author": "Jonathan Neal ", diff --git a/plugins/postcss-base-plugin/package.json b/plugins/postcss-base-plugin/package.json index b372314bc..b5061e090 100644 --- a/plugins/postcss-base-plugin/package.json +++ b/plugins/postcss-base-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@csstools/postcss-base-plugin", - "private": "true", + "private": true, "version": "0.0.0", "description": "A base plugin", "author": "Jonathan Neal ",