From f8667dc548df75587f0ad60a87eaebb19dc1bea8 Mon Sep 17 00:00:00 2001 From: GochoMugo Date: Sat, 7 Jan 2017 15:05:05 +0300 Subject: [PATCH] [npm] Do not update 'contributors' by default Bug: The contributors tool is invoked during testing. It prompts for user input which freezes the CI. Disable it for now until we find a proper workaround or fix the tool! --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53e52ba..0f79ac6 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "scripts": { "gen-doc": "jsdoc2md --files src/telegram.js --template README.hbs > README.md", "build": "babel -d ./lib src", - "prepublish": "npm run build && npm run gen-doc && contributor", + "prepublish": "npm run build && npm run gen-doc", "eslint": "eslint ./src ./test ./examples", "pretest": "npm run build", "test": "npm run eslint && istanbul cover ./node_modules/mocha/bin/_mocha"