From a69c4be0c6cd44052a0a850f270aa2cbedca59e0 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Wed, 29 Aug 2018 08:51:37 -0700 Subject: [PATCH] fix: fixpack -> @oclif/fixpack --- 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 5fce12561..f92be6cf0 100644 --- a/src/generators/app.ts +++ b/src/generators/app.ts @@ -365,7 +365,7 @@ class App extends Generator { this.fs.copyTpl(this.templatePath('test/mocha.opts'), this.destinationPath('test/mocha.opts'), this) } if (this.fs.exists(this.destinationPath('./package.json'))) { - fixpack(this.destinationPath('./package.json'), require('fixpack/config.json')) + fixpack(this.destinationPath('./package.json'), require('@oclif/fixpack/config.json')) } if (_.isEmpty(this.pjson.oclif)) delete this.pjson.oclif this.pjson.files = _.uniq((this.pjson.files || []).sort())