From 617380ffeee1e58ead14f5eea17f31fbf3121c20 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 13 Oct 2021 00:07:21 +0200 Subject: [PATCH] chore: fix bots after adjusting package descriptions (#9454) follow-up for: bcfd47343c30a6e8de0507b1db0dc1bf2ba1fbd1 --- utils/prepare_packages.js | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/prepare_packages.js b/utils/prepare_packages.js index f32fb3fcf3..7d90ad0f26 100644 --- a/utils/prepare_packages.js +++ b/utils/prepare_packages.js @@ -100,7 +100,6 @@ async function lintPackage(packageName) { const pwInternalJSON = require(path.join(ROOT_PATH, 'package.json')); const currentPackageJSON = require(path.join(packagePath, 'package.json')); currentPackageJSON.version = pwInternalJSON.version; - currentPackageJSON.description = pwInternalJSON.description; currentPackageJSON.repository = pwInternalJSON.repository; currentPackageJSON.engines = pwInternalJSON.engines; currentPackageJSON.homepage = pwInternalJSON.homepage;