Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
Preparation for the 0.0.7 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ofrogon committed Dec 22, 2014
1 parent 4d0301f commit 5f67cd3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions bin/clean-bower-installer
Expand Up @@ -197,7 +197,7 @@ function generateFileList() {
if (filesTo.ignore[i].from === filesTo.move[j].from) {
filesTo.move.splice(j, 1);

length2 --;
length2--;
}
}
}
Expand Down Expand Up @@ -494,7 +494,7 @@ var commands = {
if (Object.keys(installed).length === 0) {
endMessage = "The bower command \"install\" do not return any information.\n";
} else {
endMessage = JSON.stringify(installed)+ "\n";
endMessage = JSON.stringify(installed) + "\n";
}
}

Expand Down Expand Up @@ -648,7 +648,7 @@ if (require.main === module) {
});

// CLI input treatment
cli.main(function(args, options) {
cli.main(function (args, options) {
if (options.verbose) {
option.verbose = true;
}
Expand Down
5 changes: 2 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "clean-bower-installer",
"version": "0.0.6",
"version": "0.0.7",
"description": "Tool to install pre-selected bower dependencies",
"keywords": [
"bower",
Expand Down Expand Up @@ -36,6 +36,5 @@
},
"engines": {
"node": ">=0.10.0"
},
"preferGlobal": true
}
}
5 changes: 5 additions & 0 deletions test/test.js
Expand Up @@ -628,6 +628,11 @@ var test = [
);
}
// TODO add tests: "test the override of -V for the cli"
// TODO add tests: "test the ignore"
// TODO add tests: "test without default.folder"
// TODO add tests: "test with default.minFolder"
// TODO add tests: "test with option min"
// TODO add tests: "test with option min.ignoreExt"
// TODO optimise the use of the folders for the tests
];

Expand Down

0 comments on commit 5f67cd3

Please sign in to comment.