Skip to content

Commit

Permalink
Merge pull request #73 from bradshjg/master
Browse files Browse the repository at this point in the history
add --noninteractive flag config
  • Loading branch information
AndiDittrich committed Apr 22, 2020
2 parents 4feb440 + 793a0c8 commit bbb67e1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Refactored the codebase - make extensive use of ES6 feature like async/await

### 3.2.1 ###

* Bugfix: command `mkfs` did not respect `--noninteractive` flag - thanks to [bradshjg on GitHub](https://github.com/AndiDittrich/NodeMCU-Tool/issues/72) #72

### 3.2.0 ###

* Added: generic support for glob expressions - feature requested [on GitHub](https://github.com/AndiDittrich/NodeMCU-Tool/issues/66) #66
Expand Down Expand Up @@ -140,4 +144,4 @@ Refactored the codebase - make extensive use of ES6 feature like async/await
* Bugfix: Aborting the confirm dialog of the `mkfs` command with <kbd>ctrl+c</kbd> raised an error

### 1.0.0 ###
Initial public release
Initial public release
3 changes: 2 additions & 1 deletion lib/cli/options-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ async function parseOptions(options){
config.json = mergeOptions(options.json, false);
config.raw = mergeOptions(options.raw, false);
config.softreset = mergeOptions(options.softreset, false);
config.noninteractive = mergeOptions(options.noninteractive, false);

// set port/baud options
_nodemcutool.setOptions({
Expand All @@ -111,4 +112,4 @@ async function storeOptions(options){
module.exports = {
parse: parseOptions,
store: storeOptions
};
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nodemcu-tool",
"version": "3.2.0",
"version": "3.2.1",
"description": "Command line tool to upload and manage files on your NodeMCU / ESP8266 Module / ESP32 Module.",
"keywords": [
"cli",
Expand Down

0 comments on commit bbb67e1

Please sign in to comment.