Skip to content

Commit

Permalink
fix: remove more keys from package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed May 20, 2019
1 parent e9dc50c commit 0727906
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/cleanup.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ export async function cleanup(context, stagingDir) {
delete pkg.remarkConfig;
delete pkg.nyc;
delete pkg.publishConfig;
delete pkg.typeScriptVersion;
delete pkg.typesPublisherContentHash;
delete pkg.typings;
delete pkg.systemd;
delete pkg.pacman;
delete pkg.lintDeps;
delete pkg.icon;

for (const key of Object.keys(pkg)) {
if (key[0] === "_") {
Expand Down

0 comments on commit 0727906

Please sign in to comment.