Skip to content

Commit d198e21

Browse files
committed
chore: Removed unneeded packages from modules and package file
1 parent 9eb481b commit d198e21

File tree

4 files changed

+8
-24
lines changed

4 files changed

+8
-24
lines changed

bin/cli.js

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const program = require('commander');
55
const version = require('../package.json').version;
66
const Interchange = require('../lib/interchange');
77
const Inquire = require('../lib/inquire');
8+
89
const interchange = new Interchange();
910

1011
program

lib/interchange.js

+5-14
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
const _ = require('lodash');
2-
const program = require('commander');
32
const Avrgirl = require('avrgirl-arduino');
43
const Serialport = require('serialport');
54
const child_process = require('child_process');
65
const colors = require('colors');
7-
const fs = require('fs');
86
const fsextra = require('fs-extra');
97

108
const interchange_client = require('./interchange_client');
@@ -16,7 +14,6 @@ const version = require('../package.json').version;
1614

1715
// I think this can be refactored to be purely in the function where it is needed
1816
let ic_client;// = new interchange_client.Client();
19-
// let fw = null; // used to hold details of the firmware we want in it.
2017

2118
const Interchange = function() {
2219
this.firmwares = firmwares;
@@ -151,7 +148,6 @@ Interchange.prototype.flash_firmware = function(firmware, opts) {
151148

152149
avrgirl.flash(firmware, (err) => {
153150
if (err) {
154-
// console.error(err);
155151
reject(err);
156152
}
157153

@@ -181,25 +177,22 @@ Interchange.prototype.install_firmware = async function(firmware, options = {})
181177
// check firmware
182178
// download firmware
183179
// flash firmware to device
184-
// optionally do interchange client things if needed
180+
// optionally do interchange client configuration
185181

186182
try {
187-
/* istanbul ignore next */
188-
if (!process.env.TEST) {
189-
console.log('about to check firmware');
190-
}
183+
// check the firmware
191184
const {fw, opts} = await this.check_firmware(firmware, settings);
192185
const usingFirmata = opts.useFirmata || false; // Assumes not unless explicit
193186

194187
/* istanbul ignore next */
195188
if (!process.env.TEST) {
196-
console.log('now download the firmware');
189+
console.log('Downloading firmware');
197190
}
198191
const {hexpath, tmpdir} = await this.download_firmware(fw, opts);
199192

200193
/* istanbul ignore next */
201194
if (!process.env.TEST) {
202-
console.log('now flash the firmware');
195+
console.log('Flashing firmware to board');
203196
}
204197
const port = await this.flash_firmware(hexpath, options)
205198
.then((serport) => {
@@ -216,7 +209,7 @@ Interchange.prototype.install_firmware = async function(firmware, options = {})
216209
if (!usingFirmata) {
217210
/* istanbul ignore next */
218211
if (!process.env.TEST) {
219-
console.log('About to configure the firmware'.magenta);
212+
console.log('Configuring the firmware'.magenta);
220213
}
221214
// combine options and firmware details together and pass across
222215
return this.set_firmware_details(port, {...opts, ...fw})
@@ -240,7 +233,6 @@ Interchange.prototype.get_firmware_info = function(port) {
240233
ic_client.port = port;
241234

242235
ic_client.on('error', (err) => {
243-
// console.error('ic_client error', err);
244236
reject(err);
245237
});
246238

@@ -313,7 +305,6 @@ Interchange.prototype.set_firmware_details = (port, opts) => {
313305
ic_client.port = port;
314306

315307
ic_client.on('error', (err) => {
316-
// console.error("Can't config device. Did you remember to set your backpack into config mode?".red);
317308
ic_client.close();
318309
reject(err);
319310
});

package-lock.json

-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
},
2929
"husky": {
3030
"hooks": {
31-
"pre-commit": "npm test",
32-
"pre-push": "npm test"
31+
"pre-commit": "npm test",
32+
"pre-push": "npm test"
3333
}
3434
},
3535
"repository": {
@@ -65,15 +65,13 @@
6565
"fs-extra": "^8.1.0",
6666
"inquirer": "^7.0.0",
6767
"lodash": "^4.17.15",
68-
"minimist": "^1.2.0",
6968
"serialport": "^8.0.5",
7069
"tmp": "^0.1.0"
7170
},
7271
"devDependencies": {
7372
"eslint": "^6.7.2",
7473
"husky": "^3.1.0",
7574
"jest": "^24.9.0",
76-
"mock-stdin": "^1.0.0",
7775
"standard-version": "^7.0.1"
7876
}
7977
}

0 commit comments

Comments
 (0)