From 26ad878dacea1c8bad0b5e7df3312680f68ec77e Mon Sep 17 00:00:00 2001 From: Bret Comnes Date: Wed, 10 Apr 2019 09:02:13 -0700 Subject: [PATCH] Repair tests Closes https://github.com/netlify/cli/issues/293 --- package.json | 2 +- src/commands/sites/delete.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9faa5f057ac..e584d25a7ec 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "test": "run-s test:*", "test:ava": "nyc --reporter=lcov ava --verbose && nyc report", "test:lint": "eslint src", - "test:deps": "dependency-check ./package.json --entry \"src/**/!(*.test).js\" --unused --missing --no-dev --no-peer -i @oclif/plugin-not-found -i @oclif/config -i @oclif/plugin-help -i @oclif/plugin-plugins", + "test:deps": "dependency-check ./package.json --entry \"src/**/!(*.test).js\" --unused --missing --no-dev --no-peer -i @oclif/plugin-not-found -i @oclif/config -i @oclif/plugin-help -i @oclif/plugin-plugins -i netlify-dev-plugin", "watch": "nyc --reporter=lcov ava --watch", "prepack": "oclif-dev manifest", "postpack": "rm -f oclif.manifest.json", diff --git a/src/commands/sites/delete.js b/src/commands/sites/delete.js index cfcd34a32d1..b8b43a92c98 100644 --- a/src/commands/sites/delete.js +++ b/src/commands/sites/delete.js @@ -3,7 +3,7 @@ const { Command, flags } = require('@oclif/command') class SitesDeleteCommand extends Command { async run() { - const { args, raw } = this.parse(SitesDeleteCommand) + const { args } = this.parse(SitesDeleteCommand) this.log(`delete a site id:`, args.siteID) this.log(`Implementation coming soon`)