first-base 1.6.0 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,7 +11,6 @@ var weakRootDirIndicators = ["package-lock.json", ".gitignore", ".hgignore"];
11
11
  var veryWeakRootDirIndicators = ["package.json", "README.md"];
12
12
  function hasFile(dir, filename) {
13
13
  var fullPath = dir.concat(filename).toString();
14
- console.log("checking for ".concat(fullPath));
15
14
  try {
16
15
  return fs.existsSync(fullPath);
17
16
  } catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "first-base",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Integration testing for CLI applications",
5
5
  "main": "dist/index.js",
6
6
  "repository": {