From 3a1441deab5bd58927c51188831be214c02f24f6 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Fri, 15 Jun 2018 21:29:44 -0700 Subject: [PATCH] fix: remove shrinkwrap after publishing --- src/generators/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generators/app.ts b/src/generators/app.ts index 2cbee73..e7fab28 100644 --- a/src/generators/app.ts +++ b/src/generators/app.ts @@ -270,7 +270,7 @@ class App extends Generator { } if (['plugin', 'multi'].includes(this.type)) { this.pjson.scripts.prepack = nps.series(this.pjson.scripts.prepare, 'oclif-dev manifest', 'oclif-dev readme', 'npm shrinkwrap') - this.pjson.scripts.postpack = `${rmf} oclif.manifest.json` + this.pjson.scripts.postpack = `${rmf} oclif.manifest.json npm-shrinkwrap.json` this.pjson.scripts.version = nps.series('oclif-dev readme', 'git add README.md') this.pjson.files.push('/oclif.manifest.json') this.pjson.files.push('/npm-shrinkwrap.json')