Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Commit

Permalink
Hotfix v3.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-neves95 committed Nov 20, 2019
1 parent 32637d4 commit 6e9747d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

 

#### Hotfix v3.9.1 - *v3.9.3 - 20/11/2019
#### Hotfix v3.9.1 - *v3.9.4 - 20/11/2019

- Fixes on the `merger init` command.
- Fix on the `merger rm` command. In case there was only one file, the program crashed.
Expand Down
2 changes: 1 addition & 1 deletion modules/CLIModules/selectSourceFilePrompt.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module.exports = () => {
return console.error( style.styledError, style.errorText( 'There are no source files on the merger-config file.' ), '\nPlease run "merger add" to add a file.' );

} else if ( sourceFiles.length === 1 ) {
return __res( sourceFiles[0] );
return _res( sourceFiles[0] );
}

for ( let i = 0; i < sourceFiles.length; ++i ) {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "merger-js",
"displayName": "MergerJS",
"version": "3.9.3",
"version": "3.9.4",
"description": "Yet another simple cross-platform CLI build tool to bundle JavaScript files, with a custom file import syntax, ES8+ minification, auto build capabilities, and native OS notifications.",
"readme": "https://github.com/joao-neves95/merger-js/blob/master/README.md",
"main": "merger.js",
Expand Down

0 comments on commit 6e9747d

Please sign in to comment.