Browse Source

Debug

pull/1785/head
jlukic 9 years ago
parent
commit
bb8f9d3ed7
2 changed files with 5 additions and 1 deletions
  1. 3
      tasks/config/project/install.js
  2. 3
      tasks/install.js

3
tasks/config/project/install.js

@ -89,9 +89,10 @@ module.exports = {
walk = function(directory) { walk = function(directory) {
var var
pathArray = directory.split(path.sep), pathArray = directory.split(path.sep),
folder = pathArray[pathArray.length - 2],
folder = pathArray[pathArray.length - 1],
nextDirectory = path.join(directory, path.sep, '..') nextDirectory = path.join(directory, path.sep, '..')
; ;
console.log(folder, nextDirectory);
if( folder == 'bower_components') { if( folder == 'bower_components') {
return { return {
name: 'Bower', name: 'Bower',

3
tasks/install.js

@ -71,6 +71,9 @@ module.exports = function () {
}; };
*/ */
console.log(manager);
return;
/*-------------- /*--------------
PM Config PM Config
---------------*/ ---------------*/

Loading…
Cancel
Save