yeoman / generator-angular

Yeoman generator for AngularJS
http://yeoman.io
5.73k stars 1.44k forks source link

Lodash error #711

Closed johnwp closed 10 years ago

johnwp commented 10 years ago
$ yo angular

     _-----_
    |       |    .--------------------------.
    |--(o)--|    |    Welcome to Yeoman,    |
   `---------´   |   ladies and gentlemen!  |
    ( _´U`_ )    '--------------------------'
    /___A___\    
     |  ~  |     
   __'.___.'__   
 ´   `  |° ´ Y ` 

Out of the box I include Bootstrap and some AngularJS recommended modules.

[?] Would you like to use Sass (with Compass)? No
[?] Would you like to include Bootstrap? No
[?] Which modules would you like to include? angular-animate.js, angular-cookies.js, angular-resource.js, angular-route.js, angular-sanitize.js, angular-touch.js

/usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/lib/util/engines.js:32
  source = _.template(source)(data);
             ^
TypeError: Object function lodash(value) {
      // don't wrap if already wrapped, even if wrapped by a different `lodash` constructor
      return (value && typeof value == 'object' && !isArray(value) && hasOwnProperty.call(value, '__wrapped__'))
       ? value
       : new lodashWrapper(value);
    } has no method 'template'
    at Generator.underscore [as _engine] (/usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/lib/util/engines.js:32:14)
    at Generator.engine (/usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/lib/actions/actions.js:303:10)
    at Generator.readIndex (/usr/local/lib/node_modules/generator-angular/app/index.js:285:25)
    at /usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/lib/base.js:341:43
    at /usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/node_modules/async/lib/async.js:551:21
    at /usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/node_modules/async/lib/async.js:227:13
    at iterate (/usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/node_modules/async/lib/async.js:134:13)
    at /usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/node_modules/async/lib/async.js:145:25
    at /usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/node_modules/async/lib/async.js:229:17
    at /usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/node_modules/async/lib/async.js:556:34
eddiemonge commented 10 years ago

What version of the generator are you using?

johnwp commented 10 years ago

0.9.0-0

eddiemonge commented 10 years ago

Can you try running npm update -g and then try generating a new project. I don't see this problem at all

johnwp commented 10 years ago

Whew, that update took a while. Unfortunately that didn't seem to have any effect. Here's my lodash dependency tree.

├── lodash@2.4.1 
├─┬ sails@0.10.0-rc7
│ ├─┬ grunt@0.4.2
│ │ ├─┬ findup-sync@0.1.3
│ │ │ └── lodash@2.4.1 
│ │ └── lodash@0.9.2 
│ ├─┬ grunt-contrib-watch@0.5.3
│ │ └─┬ gaze@0.4.3
│ │   └─┬ globule@0.1.0
│ │     └── lodash@1.0.1 
│ └── lodash@2.4.1 
└─┬ yo@1.1.2
  └─┬ yeoman-generator@0.16.0
    └─┬ file-utils@0.1.5
      └── lodash@2.1.0 
eddiemonge commented 10 years ago

can you show the full tree including the generator-angular

johnwp commented 10 years ago
├─┬ angular@1.2.16
│ └─┬ jsdom@0.8.11
│   ├─┬ contextify@0.1.8
│   │ ├── bindings@1.2.0
│   │ └── nan@1.0.0
│   ├── cssom@0.3.0
│   ├── cssstyle@0.2.14
│   ├─┬ htmlparser2@3.7.2
│   │ ├── domelementtype@1.1.1
│   │ ├── domhandler@2.2.0
│   │ ├── domutils@1.5.0
│   │ ├── entities@1.0.0
│   │ └─┬ readable-stream@1.1.13-1
│   │   ├── core-util-is@1.0.1
│   │   ├── inherits@2.0.1
│   │   ├── isarray@0.0.1
│   │   └── string_decoder@0.10.25-1
│   ├── nwmatcher@1.3.3
│   ├─┬ request@2.36.0
│   │ ├── aws-sign2@0.5.0
│   │ ├── forever-agent@0.5.2
│   │ ├─┬ form-data@0.1.3
│   │ │ ├── async@0.9.0
│   │ │ └─┬ combined-stream@0.0.4
│   │ │   └── delayed-stream@0.0.5
│   │ ├─┬ hawk@1.0.0
│   │ │ ├── boom@0.4.2
│   │ │ ├── cryptiles@0.2.2
│   │ │ ├── hoek@0.9.1
│   │ │ └── sntp@0.2.4
│   │ ├─┬ http-signature@0.10.0
│   │ │ ├── asn1@0.1.11
│   │ │ ├── assert-plus@0.1.2
│   │ │ └── ctype@0.5.2
│   │ ├── json-stringify-safe@5.0.0
│   │ ├── mime@1.2.11
│   │ ├── node-uuid@1.4.1
│   │ ├── oauth-sign@0.3.0
│   │ ├── qs@0.6.6
│   │ ├─┬ tough-cookie@0.12.1
│   │ │ └── punycode@1.2.4
│   │ └── tunnel-agent@0.4.0
│   └── xmlhttprequest@1.6.0
├─┬ bower@1.3.4
│ ├── abbrev@1.0.5
│ ├── archy@0.0.2
│ ├─┬ bower-config@0.5.1
│ │ └─┬ optimist@0.6.1
│ │   ├── minimist@0.0.10
│ │   └── wordwrap@0.0.2
│ ├── bower-endpoint-parser@0.2.1
│ ├─┬ bower-json@0.4.0
│ │ ├── deep-extend@0.2.10
│ │ └── intersect@0.0.3
│ ├── bower-logger@0.2.2
│ ├─┬ bower-registry-client@0.2.1
│ │ ├── async@0.2.10
│ │ ├── lru-cache@2.3.1
│ │ ├─┬ request@2.27.0
│ │ │ ├── aws-sign@0.3.0
│ │ │ ├── cookie-jar@0.3.0
│ │ │ ├── forever-agent@0.5.2
│ │ │ ├─┬ form-data@0.1.3
│ │ │ │ ├── async@0.9.0
│ │ │ │ └─┬ combined-stream@0.0.4
│ │ │ │   └── delayed-stream@0.0.5
│ │ │ ├─┬ hawk@1.0.0
│ │ │ │ ├── boom@0.4.2
│ │ │ │ ├── cryptiles@0.2.2
│ │ │ │ ├── hoek@0.9.1
│ │ │ │ └── sntp@0.2.4
│ │ │ ├─┬ http-signature@0.10.0
│ │ │ │ ├── asn1@0.1.11
│ │ │ │ ├── assert-plus@0.1.2
│ │ │ │ └── ctype@0.5.2
│ │ │ ├── json-stringify-safe@5.0.0
│ │ │ ├── mime@1.2.11
│ │ │ ├── node-uuid@1.4.1
│ │ │ ├── oauth-sign@0.3.0
│ │ │ ├── qs@0.6.6
│ │ │ └── tunnel-agent@0.3.0
│ │ └── request-replay@0.2.0
│ ├─┬ cardinal@0.4.4
│ │ ├── ansicolors@0.2.1
│ │ └─┬ redeyed@0.4.4
│ │   └── esprima@1.0.4
│ ├─┬ chalk@0.4.0
│ │ ├── ansi-styles@1.0.0
│ │ ├── has-color@0.1.7
│ │ └── strip-ansi@0.1.1
│ ├── chmodr@0.1.0
│ ├─┬ decompress-zip@0.0.8
│ │ ├─┬ binary@0.3.0
│ │ │ ├── buffers@0.1.1
│ │ │ └─┬ chainsaw@0.1.0
│ │ │   └── traverse@0.3.9
│ │ ├── graceful-fs@3.0.0
│ │ ├── mkpath@0.1.0
│ │ ├─┬ readable-stream@1.1.13-1
│ │ │ ├── core-util-is@1.0.1
│ │ │ ├── inherits@2.0.1
│ │ │ ├── isarray@0.0.1
│ │ │ └── string_decoder@0.10.25-1
│ │ └─┬ touch@0.0.2
│ │   └── nopt@1.0.10
│ ├─┬ fstream@0.1.25
│ │ └── inherits@2.0.1
│ ├─┬ fstream-ignore@0.0.8
│ │ ├── inherits@2.0.1
│ │ └─┬ minimatch@0.3.0
│ │   └── sigmund@1.0.0
│ ├─┬ glob@3.2.11
│ │ ├── inherits@2.0.1
│ │ └─┬ minimatch@0.3.0
│ │   └── sigmund@1.0.0
│ ├── graceful-fs@2.0.3
│ ├─┬ handlebars@1.3.0
│ │ ├─┬ optimist@0.3.7
│ │ │ └── wordwrap@0.0.2
│ │ └─┬ uglify-js@2.3.6
│ │   ├── async@0.2.10
│ │   └─┬ source-map@0.1.33
│ │     └── amdefine@0.1.0
│ ├─┬ inquirer@0.4.1
│ │ ├── async@0.2.10
│ │ ├─┬ cli-color@0.2.3
│ │ │ ├── es5-ext@0.9.2
│ │ │ └─┬ memoizee@0.2.6
│ │ │   ├── event-emitter@0.2.2
│ │ │   └── next-tick@0.1.0
│ │ ├── mute-stream@0.0.4
│ │ ├── readline2@0.1.0
│ │ └── through@2.3.4
│ ├─┬ insight@0.3.1
│ │ ├── async@0.2.10
│ │ ├─┬ configstore@0.2.3
│ │ │ ├─┬ js-yaml@3.0.2
│ │ │ │ ├─┬ argparse@0.1.15
│ │ │ │ │ ├── underscore@1.4.4
│ │ │ │ │ └── underscore.string@2.3.3
│ │ │ │ └── esprima@1.0.4
│ │ │ └── uuid@1.4.1
│ │ ├─┬ lodash.debounce@2.4.1
│ │ │ ├── lodash.isfunction@2.4.1
│ │ │ ├─┬ lodash.isobject@2.4.1
│ │ │ │ └── lodash._objecttypes@2.4.1
│ │ │ └─┬ lodash.now@2.4.1
│ │ │   └── lodash._isnative@2.4.1
│ │ ├── object-assign@0.1.2
│ │ └─┬ request@2.27.0
│ │   ├── aws-sign@0.3.0
│ │   ├── cookie-jar@0.3.0
│ │   ├── forever-agent@0.5.2
│ │   ├─┬ form-data@0.1.3
│ │   │ ├── async@0.9.0
│ │   │ └─┬ combined-stream@0.0.4
│ │   │   └── delayed-stream@0.0.5
│ │   ├─┬ hawk@1.0.0
│ │   │ ├── boom@0.4.2
│ │   │ ├── cryptiles@0.2.2
│ │   │ ├── hoek@0.9.1
│ │   │ └── sntp@0.2.4
│ │   ├─┬ http-signature@0.10.0
│ │   │ ├── asn1@0.1.11
│ │   │ ├── assert-plus@0.1.2
│ │   │ └── ctype@0.5.2
│ │   ├── json-stringify-safe@5.0.0
│ │   ├── mime@1.2.11
│ │   ├── node-uuid@1.4.1
│ │   ├── oauth-sign@0.3.0
│ │   ├── qs@0.6.6
│ │   └── tunnel-agent@0.3.0
│ ├── is-root@0.1.0
│ ├── junk@0.3.0
│ ├── lockfile@0.4.2
│ ├── lru-cache@2.5.0
│ ├── mkdirp@0.3.5
│ ├── mout@0.9.1
│ ├── nopt@2.2.1
│ ├── opn@0.1.2
│ ├── osenv@0.0.3
│ ├─┬ p-throttler@0.0.1
│ │ └── q@0.9.7
│ ├─┬ promptly@0.2.0
│ │ └─┬ read@1.0.5
│ │   └── mute-stream@0.0.4
│ ├── q@1.0.1
│ ├─┬ request@2.34.0
│ │ ├── aws-sign2@0.5.0
│ │ ├── forever-agent@0.5.2
│ │ ├─┬ form-data@0.1.3
│ │ │ ├── async@0.9.0
│ │ │ └─┬ combined-stream@0.0.4
│ │ │   └── delayed-stream@0.0.5
│ │ ├─┬ hawk@1.0.0
│ │ │ ├── boom@0.4.2
│ │ │ ├── cryptiles@0.2.2
│ │ │ ├── hoek@0.9.1
│ │ │ └── sntp@0.2.4
│ │ ├─┬ http-signature@0.10.0
│ │ │ ├── asn1@0.1.11
│ │ │ ├── assert-plus@0.1.2
│ │ │ └── ctype@0.5.2
│ │ ├── json-stringify-safe@5.0.0
│ │ ├── mime@1.2.11
│ │ ├── node-uuid@1.4.1
│ │ ├── oauth-sign@0.3.0
│ │ ├── qs@0.6.6
│ │ ├─┬ tough-cookie@0.12.1
│ │ │ └── punycode@1.2.4
│ │ └── tunnel-agent@0.3.0
│ ├─┬ request-progress@0.3.1
│ │ └── throttleit@0.0.2
│ ├── retry@0.6.0
│ ├── rimraf@2.2.8
│ ├── semver@2.2.1
│ ├─┬ shell-quote@1.4.1
│ │ ├── array-filter@0.0.1
│ │ ├── array-map@0.0.0
│ │ ├── array-reduce@0.0.0
│ │ └── jsonify@0.0.0
│ ├── stringify-object@0.2.1
│ ├─┬ tar@0.1.19
│ │ ├── block-stream@0.0.7
│ │ └── inherits@2.0.1
│ ├── tmp@0.0.23
│ ├─┬ update-notifier@0.1.9
│ │ ├─┬ configstore@0.3.0
│ │ │ ├─┬ js-yaml@3.0.2
│ │ │ │ ├─┬ argparse@0.1.15
│ │ │ │ │ ├── underscore@1.4.4
│ │ │ │ │ └── underscore.string@2.3.3
│ │ │ │ └── esprima@1.0.4
│ │ │ ├── object-assign@0.2.2
│ │ │ └── uuid@1.4.1
│ │ ├─┬ request@2.36.0
│ │ │ ├── aws-sign2@0.5.0
│ │ │ ├── forever-agent@0.5.2
│ │ │ ├─┬ form-data@0.1.3
│ │ │ │ ├── async@0.9.0
│ │ │ │ └─┬ combined-stream@0.0.4
│ │ │ │   └── delayed-stream@0.0.5
│ │ │ ├─┬ hawk@1.0.0
│ │ │ │ ├── boom@0.4.2
│ │ │ │ ├── cryptiles@0.2.2
│ │ │ │ ├── hoek@0.9.1
│ │ │ │ └── sntp@0.2.4
│ │ │ ├─┬ http-signature@0.10.0
│ │ │ │ ├── asn1@0.1.11
│ │ │ │ ├── assert-plus@0.1.2
│ │ │ │ └── ctype@0.5.2
│ │ │ ├── json-stringify-safe@5.0.0
│ │ │ ├── mime@1.2.11
│ │ │ ├── node-uuid@1.4.1
│ │ │ ├── oauth-sign@0.3.0
│ │ │ ├── qs@0.6.6
│ │ │ ├─┬ tough-cookie@0.12.1
│ │ │ │ └── punycode@1.2.4
│ │ │ └── tunnel-agent@0.4.0
│ │ └── semver@2.3.0
│ └── which@1.0.5
├─┬ generator-angular@0.9.0-0
│ ├─┬ chalk@0.4.0
│ │ ├── ansi-styles@1.0.0
│ │ ├── has-color@0.1.7
│ │ └── strip-ansi@0.1.1
│ ├─┬ wiredep@1.7.3
│ │ ├─┬ bower-config@0.5.1
│ │ │ ├── graceful-fs@2.0.3
│ │ │ ├── mout@0.9.1
│ │ │ ├─┬ optimist@0.6.1
│ │ │ │ ├── minimist@0.0.10
│ │ │ │ └── wordwrap@0.0.2
│ │ │ └── osenv@0.0.3
│ │ ├─┬ chalk@0.1.1
│ │ │ ├── ansi-styles@0.1.2
│ │ │ └── has-color@0.1.7
│ │ ├─┬ glob@3.2.11
│ │ │ ├── inherits@2.0.1
│ │ │ └─┬ minimatch@0.3.0
│ │ │   ├── lru-cache@2.5.0
│ │ │   └── sigmund@1.0.0
│ │ ├── lodash@1.3.1
│ │ ├── minimist@0.1.0
│ │ └─┬ through2@0.4.2
│ │   ├─┬ readable-stream@1.0.27-1
│ │   │ ├── core-util-is@1.0.1
│ │   │ ├── inherits@2.0.1
│ │   │ ├── isarray@0.0.1
│ │   │ └── string_decoder@0.10.25-1
│ │   └─┬ xtend@2.1.2
│ │     └── object-keys@0.4.0
│ ├─┬ yeoman-generator@0.16.0
│ │ ├── async@0.2.10
│ │ ├─┬ cheerio@0.13.1
│ │ │ ├─┬ CSSselect@0.4.1
│ │ │ │ ├── CSSwhat@0.4.7
│ │ │ │ └─┬ domutils@1.4.3
│ │ │ │   └── domelementtype@1.1.1
│ │ │ ├── entities@0.5.0
│ │ │ ├─┬ htmlparser2@3.4.0
│ │ │ │ ├── domelementtype@1.1.1
│ │ │ │ ├── domhandler@2.2.0
│ │ │ │ ├── domutils@1.3.0
│ │ │ │ └─┬ readable-stream@1.1.13-1
│ │ │ │   ├── core-util-is@1.0.1
│ │ │ │   ├── inherits@2.0.1
│ │ │ │   ├── isarray@0.0.1
│ │ │ │   └── string_decoder@0.10.25-1
│ │ │ └── underscore@1.5.2
│ │ ├── class-extend@0.1.1
│ │ ├── dargs@0.1.0
│ │ ├── debug@0.7.4
│ │ ├── diff@1.0.8
│ │ ├─┬ download@0.1.17
│ │ │ ├─┬ decompress@0.2.4
│ │ │ │ ├── adm-zip@0.4.4
│ │ │ │ ├─┬ extname@0.1.2
│ │ │ │ │ └── ext-list@0.1.0
│ │ │ │ ├── map-key@0.1.4
│ │ │ │ ├─┬ stream-combiner@0.0.4
│ │ │ │ │ └── duplexer@0.1.1
│ │ │ │ ├─┬ tar@0.1.19
│ │ │ │ │ ├── block-stream@0.0.7
│ │ │ │ │ ├─┬ fstream@0.1.25
│ │ │ │ │ │ └── graceful-fs@2.0.3
│ │ │ │ │ └── inherits@2.0.1
│ │ │ │ └─┬ tempfile@0.1.3
│ │ │ │   └── uuid@1.4.1
│ │ │ ├── each-async@0.1.3
│ │ │ ├── get-stdin@0.1.0
│ │ │ ├── get-urls@0.1.2
│ │ │ ├─┬ nopt@2.2.1
│ │ │ │ └── abbrev@1.0.5
│ │ │ ├─┬ request@2.36.0
│ │ │ │ ├── aws-sign2@0.5.0
│ │ │ │ ├── forever-agent@0.5.2
│ │ │ │ ├─┬ form-data@0.1.3
│ │ │ │ │ ├── async@0.9.0
│ │ │ │ │ └─┬ combined-stream@0.0.4
│ │ │ │ │   └── delayed-stream@0.0.5
│ │ │ │ ├─┬ hawk@1.0.0
│ │ │ │ │ ├── boom@0.4.2
│ │ │ │ │ ├── cryptiles@0.2.2
│ │ │ │ │ ├── hoek@0.9.1
│ │ │ │ │ └── sntp@0.2.4
│ │ │ │ ├─┬ http-signature@0.10.0
│ │ │ │ │ ├── asn1@0.1.11
│ │ │ │ │ ├── assert-plus@0.1.2
│ │ │ │ │ └── ctype@0.5.2
│ │ │ │ ├── json-stringify-safe@5.0.0
│ │ │ │ ├── node-uuid@1.4.1
│ │ │ │ ├── oauth-sign@0.3.0
│ │ │ │ ├── qs@0.6.6
│ │ │ │ ├─┬ tough-cookie@0.12.1
│ │ │ │ │ └── punycode@1.2.4
│ │ │ │ └── tunnel-agent@0.4.0
│ │ │ └─┬ through2@0.4.2
│ │ │   ├─┬ readable-stream@1.0.27-1
│ │ │   │ ├── core-util-is@1.0.1
│ │ │   │ ├── inherits@2.0.1
│ │ │   │ ├── isarray@0.0.1
│ │ │   │ └── string_decoder@0.10.25-1
│ │ │   └─┬ xtend@2.1.2
│ │ │     └── object-keys@0.4.0
│ │ ├─┬ file-utils@0.1.5
│ │ │ ├── isbinaryfile@0.1.9
│ │ │ ├── lodash@2.1.0
│ │ │ └─┬ minimatch@0.2.14
│ │ │   ├── lru-cache@2.5.0
│ │ │   └── sigmund@1.0.0
│ │ ├── findup-sync@0.1.3
│ │ ├─┬ glob@3.2.11
│ │ │ ├── inherits@2.0.1
│ │ │ └─┬ minimatch@0.3.0
│ │ │   ├── lru-cache@2.5.0
│ │ │   └── sigmund@1.0.0
│ │ ├── iconv-lite@0.2.11
│ │ ├─┬ inquirer@0.4.1
│ │ │ ├─┬ cli-color@0.2.3
│ │ │ │ ├── es5-ext@0.9.2
│ │ │ │ └─┬ memoizee@0.2.6
│ │ │ │   ├── event-emitter@0.2.2
│ │ │ │   └── next-tick@0.1.0
│ │ │ ├── mute-stream@0.0.4
│ │ │ ├── readline2@0.1.0
│ │ │ └── through@2.3.4
│ │ ├── isbinaryfile@2.0.1
│ │ ├── mime@1.2.11
│ │ ├── mkdirp@0.3.5
│ │ ├─┬ request@2.30.0
│ │ │ ├── aws-sign2@0.5.0
│ │ │ ├── forever-agent@0.5.2
│ │ │ ├─┬ form-data@0.1.3
│ │ │ │ ├── async@0.9.0
│ │ │ │ └─┬ combined-stream@0.0.4
│ │ │ │   └── delayed-stream@0.0.5
│ │ │ ├─┬ hawk@1.0.0
│ │ │ │ ├── boom@0.4.2
│ │ │ │ ├── cryptiles@0.2.2
│ │ │ │ ├── hoek@0.9.1
│ │ │ │ └── sntp@0.2.4
│ │ │ ├─┬ http-signature@0.10.0
│ │ │ │ ├── asn1@0.1.11
│ │ │ │ ├── assert-plus@0.1.2
│ │ │ │ └── ctype@0.5.2
│ │ │ ├── json-stringify-safe@5.0.0
│ │ │ ├── node-uuid@1.4.1
│ │ │ ├── oauth-sign@0.3.0
│ │ │ ├── qs@0.6.6
│ │ │ ├─┬ tough-cookie@0.9.15
│ │ │ │ └── punycode@1.2.4
│ │ │ └── tunnel-agent@0.3.0
│ │ ├── rimraf@2.2.8
│ │ ├── shelljs@0.2.6
│ │ ├── text-table@0.2.0
│ │ └── underscore.string@2.3.3
│ └─┬ yosay@0.2.1
│   ├── minimist@0.0.9
│   ├── pad-component@0.0.1
│   └── word-wrap@0.1.3
├─┬ generator-karma@0.8.2
│ ├── underscore@1.6.0
│ └─┬ yeoman-generator@0.17.0
│   ├── async@0.9.0
│   ├─┬ chalk@0.4.0
│   │ ├── ansi-styles@1.0.0
│   │ ├── has-color@0.1.7
│   │ └── strip-ansi@0.1.1
│   ├─┬ cheerio@0.16.0
│   │ ├─┬ CSSselect@0.4.1
│   │ │ ├── CSSwhat@0.4.7
│   │ │ └─┬ domutils@1.4.3
│   │ │   └── domelementtype@1.1.1
│   │ ├── entities@1.1.1
│   │ └─┬ htmlparser2@3.7.2
│   │   ├── domelementtype@1.1.1
│   │   ├── domhandler@2.2.0
│   │   ├── domutils@1.5.0
│   │   ├── entities@1.0.0
│   │   └─┬ readable-stream@1.1.13-1
│   │     ├── core-util-is@1.0.1
│   │     ├── inherits@2.0.1
│   │     ├── isarray@0.0.1
│   │     └── string_decoder@0.10.25-1
│   ├── class-extend@0.1.1
│   ├── dargs@0.1.0
│   ├── debug@0.8.1
│   ├── diff@1.0.8
│   ├─┬ download@0.1.17
│   │ ├─┬ decompress@0.2.4
│   │ │ ├── adm-zip@0.4.4
│   │ │ ├─┬ extname@0.1.2
│   │ │ │ └── ext-list@0.1.0
│   │ │ ├── map-key@0.1.4
│   │ │ ├─┬ stream-combiner@0.0.4
│   │ │ │ └── duplexer@0.1.1
│   │ │ ├─┬ tar@0.1.19
│   │ │ │ ├── block-stream@0.0.7
│   │ │ │ ├─┬ fstream@0.1.25
│   │ │ │ │ └── graceful-fs@2.0.3
│   │ │ │ └── inherits@2.0.1
│   │ │ └─┬ tempfile@0.1.3
│   │ │   └── uuid@1.4.1
│   │ ├── each-async@0.1.3
│   │ ├── get-stdin@0.1.0
│   │ ├── get-urls@0.1.2
│   │ ├── mkdirp@0.3.5
│   │ └─┬ through2@0.4.2
│   │   ├─┬ readable-stream@1.0.27-1
│   │   │ ├── core-util-is@1.0.1
│   │   │ ├── inherits@2.0.1
│   │   │ ├── isarray@0.0.1
│   │   │ └── string_decoder@0.10.25-1
│   │   └─┬ xtend@2.1.2
│   │     └── object-keys@0.4.0
│   ├─┬ file-utils@0.2.0
│   │ └─┬ minimatch@0.2.14
│   │   ├── lru-cache@2.5.0
│   │   └── sigmund@1.0.0
│   ├── findup-sync@0.1.3
│   ├─┬ glob@3.2.11
│   │ ├── inherits@2.0.1
│   │ └─┬ minimatch@0.3.0
│   │   ├── lru-cache@2.5.0
│   │   └── sigmund@1.0.0
│   ├─┬ grouped-queue@0.2.1
│   │ └── setimmediate@1.0.2
│   ├─┬ gruntfile-editor@0.1.0
│   │ └─┬ ast-query@0.2.4
│   │   ├─┬ escodegen@1.3.3
│   │   │ ├── estraverse@1.5.0
│   │   │ ├── esutils@1.0.0
│   │   │ └─┬ source-map@0.1.33
│   │   │   └── amdefine@0.1.0
│   │   ├── esprima@1.1.1
│   │   └── traverse@0.6.6
│   ├── iconv-lite@0.2.11
│   ├─┬ inquirer@0.5.1
│   │ ├── async@0.8.0
│   │ ├─┬ cli-color@0.3.2
│   │ │ ├── d@0.1.1
│   │ │ ├─┬ es5-ext@0.10.4
│   │ │ │ ├── es6-iterator@0.1.1
│   │ │ │ └── es6-symbol@0.1.0
│   │ │ ├─┬ memoizee@0.3.3
│   │ │ │ ├── event-emitter@0.3.1
│   │ │ │ ├── lru-queue@0.1.0
│   │ │ │ └── next-tick@0.2.2
│   │ │ └─┬ timers-ext@0.1.0
│   │ │   └── next-tick@0.2.2
│   │ ├── mute-stream@0.0.4
│   │ ├── readline2@0.1.0
│   │ └── through@2.3.4
│   ├── isbinaryfile@2.0.1
│   ├── mime@1.2.11
│   ├─┬ mkdirp@0.5.0
│   │ └── minimist@0.0.8
│   ├─┬ nopt@2.2.1
│   │ └── abbrev@1.0.5
│   ├─┬ request@2.36.0
│   │ ├── aws-sign2@0.5.0
│   │ ├── forever-agent@0.5.2
│   │ ├─┬ form-data@0.1.3
│   │ │ └─┬ combined-stream@0.0.4
│   │ │   └── delayed-stream@0.0.5
│   │ ├─┬ hawk@1.0.0
│   │ │ ├── boom@0.4.2
│   │ │ ├── cryptiles@0.2.2
│   │ │ ├── hoek@0.9.1
│   │ │ └── sntp@0.2.4
│   │ ├─┬ http-signature@0.10.0
│   │ │ ├── asn1@0.1.11
│   │ │ ├── assert-plus@0.1.2
│   │ │ └── ctype@0.5.2
│   │ ├── json-stringify-safe@5.0.0
│   │ ├── node-uuid@1.4.1
│   │ ├── oauth-sign@0.3.0
│   │ ├── qs@0.6.6
│   │ ├─┬ tough-cookie@0.12.1
│   │ │ └── punycode@1.2.4
│   │ └── tunnel-agent@0.4.0
│   ├── rimraf@2.2.8
│   ├── shelljs@0.3.0
│   ├── text-table@0.2.0
│   └── underscore.string@2.3.3
├─┬ grunt-cli@0.1.13
│ ├─┬ findup-sync@0.1.3
│ │ └─┬ glob@3.2.11
│ │   ├── inherits@2.0.1
│ │   └─┬ minimatch@0.3.0
│ │     ├── lru-cache@2.5.0
│ │     └── sigmund@1.0.0
│ ├─┬ nopt@1.0.10
│ │ └── abbrev@1.0.5
│ └── resolve@0.3.1
├── lodash@2.4.1
├─┬ sails@0.10.0-rc7
│ ├─┬ anchor@0.10.0-rc1
│ │ └── validator@3.3.0
│ ├── async@0.2.10
│ ├── captains-log@0.11.8
│ ├── colors@0.6.2
│ ├── commander@2.1.0
│ ├── connect-flash@0.1.1
│ ├─┬ connect-mongo@0.4.1
│ │ └─┬ mongodb@1.3.23
│ │   ├── bson@0.2.5
│ │   └── kerberos@0.0.3
│ ├─┬ connect-redis@1.4.7
│ │ ├── debug@0.8.1
│ │ └── redis@0.10.1
│ ├── ejs@0.8.8
│ ├── ejs-locals@1.0.2
│ ├─┬ express@3.4.3
│ │ ├── buffer-crc32@0.2.1
│ │ ├─┬ commander@1.3.2
│ │ │ └── keypress@0.1.0
│ │ ├─┬ connect@2.10.1
│ │ │ ├── bytes@0.2.0
│ │ │ ├─┬ multiparty@2.2.0
│ │ │ │ ├─┬ readable-stream@1.1.13-1
│ │ │ │ │ ├── core-util-is@1.0.1
│ │ │ │ │ ├── inherits@2.0.1
│ │ │ │ │ ├── isarray@0.0.1
│ │ │ │ │ └── string_decoder@0.10.25-1
│ │ │ │ └── stream-counter@0.2.0
│ │ │ ├── negotiator@0.2.8
│ │ │ ├── pause@0.0.1
│ │ │ ├── qs@0.6.5
│ │ │ ├── raw-body@0.0.3
│ │ │ └── uid2@0.0.2
│ │ ├── cookie@0.1.0
│ │ ├── cookie-signature@1.0.1
│ │ ├── debug@0.8.1
│ │ ├── fresh@0.2.0
│ │ ├── methods@0.0.1
│ │ ├── mkdirp@0.3.5
│ │ ├── range-parser@0.0.4
│ │ └─┬ send@0.1.4
│ │   └── mime@1.2.11
│ ├─┬ express3-handlebars@0.5.0
│ │ └─┬ handlebars@1.3.0
│ │   ├─┬ optimist@0.3.7
│ │   │ └── wordwrap@0.0.2
│ │   └─┬ uglify-js@2.3.6
│ │     └─┬ source-map@0.1.33
│ │       └── amdefine@0.1.0
│ ├─┬ glob@3.2.9
│ │ ├── inherits@2.0.1
│ │ └─┬ minimatch@0.2.14
│ │   ├── lru-cache@2.5.0
│ │   └── sigmund@1.0.0
│ ├─┬ grunt@0.4.2
│ │ ├── async@0.1.22
│ │ ├── coffee-script@1.3.3
│ │ ├── dateformat@1.0.2-1.2.3
│ │ ├── eventemitter2@0.4.13
│ │ ├── exit@0.1.2
│ │ ├─┬ findup-sync@0.1.3
│ │ │ ├─┬ glob@3.2.9
│ │ │ │ └── inherits@2.0.1
│ │ │ └── lodash@2.4.1
│ │ ├── getobject@0.1.0
│ │ ├─┬ glob@3.1.21
│ │ │ ├── graceful-fs@1.2.3
│ │ │ └── inherits@1.0.0
│ │ ├── hooker@0.2.3
│ │ ├── iconv-lite@0.2.11
│ │ ├─┬ js-yaml@2.0.5
│ │ │ ├─┬ argparse@0.1.15
│ │ │ │ ├── underscore@1.4.4
│ │ │ │ └── underscore.string@2.3.3
│ │ │ └── esprima@1.0.4
│ │ ├── lodash@0.9.2
│ │ ├─┬ minimatch@0.2.14
│ │ │ ├── lru-cache@2.5.0
│ │ │ └── sigmund@1.0.0
│ │ ├─┬ nopt@1.0.10
│ │ │ └── abbrev@1.0.5
│ │ ├─┬ rimraf@2.0.3
│ │ │ └── graceful-fs@1.1.14
│ │ ├── underscore.string@2.2.1
│ │ └── which@1.0.5
│ ├─┬ grunt-cli@0.1.13
│ │ ├── findup-sync@0.1.3
│ │ ├─┬ nopt@1.0.10
│ │ │ └── abbrev@1.0.5
│ │ └── resolve@0.3.1
│ ├─┬ grunt-contrib-clean@0.5.0
│ │ └── rimraf@2.2.8
│ ├─┬ grunt-contrib-coffee@0.10.1
│ │ ├─┬ chalk@0.4.0
│ │ │ ├── ansi-styles@1.0.0
│ │ │ ├── has-color@0.1.7
│ │ │ └── strip-ansi@0.1.1
│ │ └─┬ coffee-script@1.7.1
│ │   └── mkdirp@0.3.5
│ ├── grunt-contrib-concat@0.3.0
│ ├── grunt-contrib-copy@0.5.0
│ ├─┬ grunt-contrib-cssmin@0.9.0
│ │ ├─┬ chalk@0.4.0
│ │ │ ├── ansi-styles@1.0.0
│ │ │ ├── has-color@0.1.7
│ │ │ └── strip-ansi@0.1.1
│ │ ├── clean-css@2.1.8
│ │ └─┬ maxmin@0.1.0
│ │   ├─┬ gzip-size@0.1.1
│ │   │ ├─┬ concat-stream@1.4.5
│ │   │ │ ├── inherits@2.0.1
│ │   │ │ ├─┬ readable-stream@1.1.13-1
│ │   │ │ │ ├── core-util-is@1.0.1
│ │   │ │ │ ├── isarray@0.0.1
│ │   │ │ │ └── string_decoder@0.10.25-1
│ │   │ │ └── typedarray@0.0.5
│ │   │ └─┬ zlib-browserify@0.0.3
│ │   │   └─┬ tape@0.2.2
│ │   │     ├── deep-equal@0.0.0
│ │   │     ├── defined@0.0.0
│ │   │     └── jsonify@0.0.0
│ │   └── pretty-bytes@0.1.1
│ ├─┬ grunt-contrib-jst@0.6.0
│ │ ├─┬ chalk@0.4.0
│ │ │ ├── ansi-styles@1.0.0
│ │ │ ├── has-color@0.1.7
│ │ │ └── strip-ansi@0.1.1
│ │ └─┬ grunt-lib-contrib@0.7.1
│ │   ├─┬ maxmin@0.1.0
│ │   │ ├─┬ gzip-size@0.1.1
│ │   │ │ ├─┬ concat-stream@1.4.5
│ │   │ │ │ ├── inherits@2.0.1
│ │   │ │ │ ├─┬ readable-stream@1.1.13-1
│ │   │ │ │ │ ├── core-util-is@1.0.1
│ │   │ │ │ │ ├── isarray@0.0.1
│ │   │ │ │ │ └── string_decoder@0.10.25-1
│ │   │ │ │ └── typedarray@0.0.5
│ │   │ │ └─┬ zlib-browserify@0.0.3
│ │   │ │   └─┬ tape@0.2.2
│ │   │ │     ├── deep-equal@0.0.0
│ │   │ │     ├── defined@0.0.0
│ │   │ │     └── jsonify@0.0.0
│ │   │ └── pretty-bytes@0.1.1
│ │   └── strip-path@0.1.1
│ ├─┬ grunt-contrib-less@0.10.0
│ │ ├─┬ chalk@0.4.0
│ │ │ ├── ansi-styles@1.0.0
│ │ │ ├── has-color@0.1.7
│ │ │ └── strip-ansi@0.1.1
│ │ ├─┬ grunt-lib-contrib@0.6.1
│ │ │ └── zlib-browserify@0.0.1
│ │ └─┬ less@1.7.0
│ │   ├── clean-css@2.1.8
│ │   ├── mime@1.2.11
│ │   ├── mkdirp@0.3.5
│ │   ├─┬ request@2.34.0
│ │   │ ├── aws-sign2@0.5.0
│ │   │ ├── forever-agent@0.5.2
│ │   │ ├─┬ form-data@0.1.2
│ │   │ │ └─┬ combined-stream@0.0.4
│ │   │ │   └── delayed-stream@0.0.5
│ │   │ ├─┬ hawk@1.0.0
│ │   │ │ ├── boom@0.4.2
│ │   │ │ ├── cryptiles@0.2.2
│ │   │ │ ├── hoek@0.9.1
│ │   │ │ └── sntp@0.2.4
│ │   │ ├─┬ http-signature@0.10.0
│ │   │ │ ├── asn1@0.1.11
│ │   │ │ ├── assert-plus@0.1.2
│ │   │ │ └── ctype@0.5.2
│ │   │ ├── json-stringify-safe@5.0.0
│ │   │ ├── oauth-sign@0.3.0
│ │   │ ├── qs@0.6.6
│ │   │ ├─┬ tough-cookie@0.12.1
│ │   │ │ └── punycode@1.2.4
│ │   │ └── tunnel-agent@0.3.0
│ │   └─┬ source-map@0.1.33
│ │     └── amdefine@0.1.0
│ ├─┬ grunt-contrib-uglify@0.4.0
│ │ ├─┬ chalk@0.4.0
│ │ │ ├── ansi-styles@1.0.0
│ │ │ ├── has-color@0.1.7
│ │ │ └── strip-ansi@0.1.1
│ │ ├─┬ maxmin@0.1.0
│ │ │ ├─┬ gzip-size@0.1.1
│ │ │ │ ├─┬ concat-stream@1.4.5
│ │ │ │ │ ├── inherits@2.0.1
│ │ │ │ │ ├─┬ readable-stream@1.1.13-1
│ │ │ │ │ │ ├── core-util-is@1.0.1
│ │ │ │ │ │ ├── isarray@0.0.1
│ │ │ │ │ │ └── string_decoder@0.10.25-1
│ │ │ │ │ └── typedarray@0.0.5
│ │ │ │ └─┬ zlib-browserify@0.0.3
│ │ │ │   └─┬ tape@0.2.2
│ │ │ │     ├── deep-equal@0.0.0
│ │ │ │     ├── defined@0.0.0
│ │ │ │     └── jsonify@0.0.0
│ │ │ └── pretty-bytes@0.1.1
│ │ └─┬ uglify-js@2.4.13
│ │   ├─┬ optimist@0.3.7
│ │   │ └── wordwrap@0.0.2
│ │   ├─┬ source-map@0.1.33
│ │   │ └── amdefine@0.1.0
│ │   └── uglify-to-browserify@1.0.2
│ ├─┬ grunt-contrib-watch@0.5.3
│ │ ├─┬ gaze@0.4.3
│ │ │ └─┬ globule@0.1.0
│ │ │   ├─┬ glob@3.1.21
│ │ │   │ ├── graceful-fs@1.2.3
│ │ │   │ └── inherits@1.0.0
│ │ │   ├── lodash@1.0.1
│ │ │   └─┬ minimatch@0.2.14
│ │ │     ├── lru-cache@2.5.0
│ │ │     └── sigmund@1.0.0
│ │ └─┬ tiny-lr@0.0.4
│ │   ├── debug@0.7.4
│ │   ├── faye-websocket@0.4.4
│ │   ├─┬ noptify@0.0.3
│ │   │ └─┬ nopt@2.0.0
│ │   │   └── abbrev@1.0.5
│ │   └── qs@0.5.6
│ ├── grunt-sails-linker@0.9.5
│ ├─┬ grunt-sync@0.0.7
│ │ └── promised-io@0.3.3
│ ├─┬ i18n@0.4.1
│ │ ├── debug@0.8.1
│ │ └── sprintf@0.1.3
│ ├─┬ include-all@0.1.6
│ │ └── underscore.string@2.3.1
│ ├── lodash@2.4.1
│ ├── merge-defaults@0.1.0
│ ├── mock-req@0.1.0
│ ├── mock-res@0.1.0
│ ├── node-uuid@1.4.1
│ ├── pluralize@0.0.9
│ ├─┬ rc@0.3.5
│ │ ├── deep-extend@0.2.8
│ │ ├── ini@1.1.0
│ │ └── minimist@0.0.9
│ ├─┬ reportback@0.1.8
│ │ └── node-switchback@0.0.4
│ ├── sails-build-dictionary@0.10.1
│ ├─┬ sails-disk@0.10.0-rc5
│ │ ├─┬ fs-extra@0.8.1
│ │ │ ├── jsonfile@1.1.1
│ │ │ ├── mkdirp@0.3.5
│ │ │ ├── ncp@0.4.2
│ │ │ └── rimraf@2.2.8
│ │ ├── waterline-criteria@0.10.6
│ │ └── waterline-errors@0.10.0-rc1
│ ├─┬ sails-generate@0.10.3
│ │ ├─┬ fs-extra@0.8.1
│ │ │ ├── jsonfile@1.1.1
│ │ │ ├── mkdirp@0.3.5
│ │ │ ├── ncp@0.4.2
│ │ │ └── rimraf@2.2.8
│ │ ├── sails-generate-adapter@0.10.4
│ │ ├── sails-generate-backend@0.10.13
│ │ ├─┬ sails-generate-controller@0.10.6
│ │ │ └── underscore.string@2.3.3
│ │ ├── sails-generate-frontend@0.10.17
│ │ ├── sails-generate-generator@0.10.10
│ │ ├── sails-generate-gruntfile@0.10.10
│ │ ├─┬ sails-generate-model@0.10.9
│ │ │ └── underscore.string@2.3.3
│ │ ├── sails-generate-new@0.10.15
│ │ ├── sails-generate-views@0.10.1
│ │ └── sails-generate-views-jade@0.10.0
│ ├── sails-stringfile@0.3.2
│ ├─┬ sails-util@0.10.0
│ │ ├─┬ fs-extra@0.8.1
│ │ │ ├── jsonfile@1.1.1
│ │ │ ├── mkdirp@0.3.5
│ │ │ ├── ncp@0.4.2
│ │ │ └── rimraf@2.2.8
│ │ ├── json-stringify-safe@5.0.0
│ │ ├─┬ optimist@0.6.1
│ │ │ ├── minimist@0.0.9
│ │ │ └── wordwrap@0.0.2
│ │ └── underscore.string@2.3.3
│ ├── semver@2.2.1
│ ├─┬ skipper@0.1.3
│ │ ├─┬ connect@2.15.0
│ │ │ ├── basic-auth-connect@1.0.0
│ │ │ ├── bytes@0.3.0
│ │ │ ├─┬ compression@1.0.2
│ │ │ │ ├── compressible@1.0.1
│ │ │ │ └── negotiator@0.4.3
│ │ │ ├── connect-timeout@1.1.0
│ │ │ ├── cookie@0.1.2
│ │ │ ├─┬ cookie-parser@1.0.1
│ │ │ │ └── cookie@0.1.0
│ │ │ ├── cookie-signature@1.0.3
│ │ │ ├─┬ csurf@1.1.0
│ │ │ │ ├── scmp@0.0.3
│ │ │ │ └── uid2@0.0.3
│ │ │ ├── debug@0.8.1
│ │ │ ├── errorhandler@1.0.1
│ │ │ ├─┬ express-session@1.0.4
│ │ │ │ ├── buffer-crc32@0.2.1
│ │ │ │ ├── uid2@0.0.3
│ │ │ │ └── utils-merge@1.0.0
│ │ │ ├── fresh@0.2.2
│ │ │ ├─┬ method-override@1.0.0
│ │ │ │ └── methods@1.0.0
│ │ │ ├── morgan@1.0.1
│ │ │ ├─┬ multiparty@2.2.0
│ │ │ │ ├─┬ readable-stream@1.1.13-1
│ │ │ │ │ ├── core-util-is@1.0.1
│ │ │ │ │ ├── inherits@2.0.1
│ │ │ │ │ └── isarray@0.0.1
│ │ │ │ └── stream-counter@0.2.0
│ │ │ ├── pause@0.0.1
│ │ │ ├── qs@0.6.6
│ │ │ ├── raw-body@1.1.4
│ │ │ ├── response-time@1.0.0
│ │ │ ├── serve-favicon@2.0.0
│ │ │ ├─┬ serve-index@1.0.2
│ │ │ │ ├── batch@0.5.0
│ │ │ │ └── negotiator@0.4.3
│ │ │ ├─┬ serve-static@1.1.0
│ │ │ │ ├── parseurl@1.0.1
│ │ │ │ └─┬ send@0.3.0
│ │ │ │   ├── buffer-crc32@0.2.1
│ │ │ │   ├── debug@0.8.0
│ │ │ │   ├── mime@1.2.11
│ │ │ │   └── range-parser@1.0.0
│ │ │ └── vhost@1.0.0
│ │ ├── dot-access@0.0.3
│ │ ├─┬ multiparty@3.2.4
│ │ │ ├─┬ readable-stream@1.1.13-1
│ │ │ │ ├── core-util-is@1.0.1
│ │ │ │ ├── inherits@2.0.1
│ │ │ │ └── isarray@0.0.1
│ │ │ └── stream-counter@0.2.0
│ │ ├─┬ skipper-disk@0.2.5
│ │ │ └─┬ fs-extra@0.8.1
│ │ │   ├── jsonfile@1.1.1
│ │ │   ├── mkdirp@0.3.5
│ │ │   ├── ncp@0.4.2
│ │ │   └── rimraf@2.2.8
│ │ └── string_decoder@0.10.25-1
│ ├─┬ socket.io@0.9.16
│ │ ├── base64id@0.1.0
│ │ ├── policyfile@0.0.4
│ │ ├── redis@0.7.3
│ │ └─┬ socket.io-client@0.9.16
│ │   ├─┬ active-x-obfuscator@0.0.1
│ │   │ └── zeparser@0.0.5
│ │   ├── uglify-js@1.2.5
│ │   ├─┬ ws@0.4.31
│ │   │ ├── commander@0.6.1
│ │   │ ├── nan@0.3.2
│ │   │ ├── options@0.0.5
│ │   │ └── tinycolor@0.0.1
│ │   └── xmlhttprequest@1.4.2
│ └─┬ waterline@0.10.0-rc12
│   ├── async@0.7.0
│   ├── deep-diff@0.1.7
│   ├── node-switchback@0.0.4
│   ├─┬ prompt@0.2.12
│   │ ├── pkginfo@0.3.0
│   │ ├─┬ read@1.0.5
│   │ │ └── mute-stream@0.0.4
│   │ ├── revalidator@0.1.7
│   │ ├─┬ utile@0.2.1
│   │ │ ├── async@0.2.10
│   │ │ ├── deep-equal@0.2.1
│   │ │ ├── i@0.3.2
│   │ │ ├─┬ mkdirp@0.5.0
│   │ │ │ └── minimist@0.0.8
│   │ │ ├── ncp@0.4.2
│   │ │ └── rimraf@2.2.8
│   │ └─┬ winston@0.6.2
│   │   ├── async@0.1.22
│   │   ├── cycle@1.0.3
│   │   ├── eyes@0.1.8
│   │   ├── pkginfo@0.2.3
│   │   ├── request@2.9.203
│   │   └── stack-trace@0.0.9
│   ├── q@1.0.1
│   ├── waterline-criteria@0.10.6
│   └── waterline-schema@0.1.10
└─┬ yo@1.1.2
  ├── async@0.2.10
  ├─┬ chalk@0.4.0
  │ ├── ansi-styles@1.0.0
  │ ├── has-color@0.1.7
  │ └── strip-ansi@0.1.1
  ├─┬ findup@0.1.5
  │ ├── colors@0.6.2
  │ └── commander@2.1.0
  ├─┬ insight@0.3.1
  │ ├─┬ configstore@0.2.3
  │ │ ├── graceful-fs@2.0.3
  │ │ ├─┬ js-yaml@3.0.2
  │ │ │ ├─┬ argparse@0.1.15
  │ │ │ │ ├── underscore@1.4.4
  │ │ │ │ └── underscore.string@2.3.3
  │ │ │ └── esprima@1.0.4
  │ │ ├── mkdirp@0.3.5
  │ │ ├── osenv@0.0.3
  │ │ └── uuid@1.4.1
  │ ├─┬ inquirer@0.4.1
  │ │ ├─┬ cli-color@0.2.3
  │ │ │ ├── es5-ext@0.9.2
  │ │ │ └─┬ memoizee@0.2.6
  │ │ │   ├── event-emitter@0.2.2
  │ │ │   └── next-tick@0.1.0
  │ │ ├── mute-stream@0.0.4
  │ │ ├── readline2@0.1.0
  │ │ └── through@2.3.4
  │ ├─┬ lodash.debounce@2.4.1
  │ │ ├── lodash.isfunction@2.4.1
  │ │ ├─┬ lodash.isobject@2.4.1
  │ │ │ └── lodash._objecttypes@2.4.1
  │ │ └─┬ lodash.now@2.4.1
  │ │   └── lodash._isnative@2.4.1
  │ ├── object-assign@0.1.2
  │ └─┬ request@2.27.0
  │   ├── aws-sign@0.3.0
  │   ├── cookie-jar@0.3.0
  │   ├── forever-agent@0.5.2
  │   ├─┬ form-data@0.1.3
  │   │ ├── async@0.9.0
  │   │ └─┬ combined-stream@0.0.4
  │   │   └── delayed-stream@0.0.5
  │   ├─┬ hawk@1.0.0
  │   │ ├── boom@0.4.2
  │   │ ├── cryptiles@0.2.2
  │   │ ├── hoek@0.9.1
  │   │ └── sntp@0.2.4
  │   ├─┬ http-signature@0.10.0
  │   │ ├── asn1@0.1.11
  │   │ ├── assert-plus@0.1.2
  │   │ └── ctype@0.5.2
  │   ├── json-stringify-safe@5.0.0
  │   ├── mime@1.2.11
  │   ├── node-uuid@1.4.1
  │   ├── oauth-sign@0.3.0
  │   ├── qs@0.6.6
  │   └── tunnel-agent@0.3.0
  ├─┬ nopt@2.1.2
  │ └── abbrev@1.0.5
  ├── open@0.0.4
  ├── shelljs@0.2.6
  ├─┬ sudo-block@0.3.0
  │ └─┬ chalk@0.3.0
  │   ├── ansi-styles@0.2.0
  │   └── has-color@0.1.7
  ├─┬ update-notifier@0.1.9
  │ ├─┬ configstore@0.3.0
  │ │ ├── graceful-fs@2.0.3
  │ │ ├─┬ js-yaml@3.0.2
  │ │ │ ├─┬ argparse@0.1.15
  │ │ │ │ ├── underscore@1.4.4
  │ │ │ │ └── underscore.string@2.3.3
  │ │ │ └── esprima@1.0.4
  │ │ ├── mkdirp@0.3.5
  │ │ ├── object-assign@0.2.2
  │ │ ├── osenv@0.0.3
  │ │ └── uuid@1.4.1
  │ ├─┬ request@2.36.0
  │ │ ├── aws-sign2@0.5.0
  │ │ ├── forever-agent@0.5.2
  │ │ ├─┬ form-data@0.1.3
  │ │ │ ├── async@0.9.0
  │ │ │ └─┬ combined-stream@0.0.4
  │ │ │   └── delayed-stream@0.0.5
  │ │ ├─┬ hawk@1.0.0
  │ │ │ ├── boom@0.4.2
  │ │ │ ├── cryptiles@0.2.2
  │ │ │ ├── hoek@0.9.1
  │ │ │ └── sntp@0.2.4
  │ │ ├─┬ http-signature@0.10.0
  │ │ │ ├── asn1@0.1.11
  │ │ │ ├── assert-plus@0.1.2
  │ │ │ └── ctype@0.5.2
  │ │ ├── json-stringify-safe@5.0.0
  │ │ ├── mime@1.2.11
  │ │ ├── node-uuid@1.4.1
  │ │ ├── oauth-sign@0.3.0
  │ │ ├── qs@0.6.6
  │ │ ├─┬ tough-cookie@0.12.1
  │ │ │ └── punycode@1.2.4
  │ │ └── tunnel-agent@0.4.0
  │ └── semver@2.3.0
  └─┬ yeoman-generator@0.16.0
    ├─┬ cheerio@0.13.1
    │ ├─┬ CSSselect@0.4.1
    │ │ ├── CSSwhat@0.4.7
    │ │ └─┬ domutils@1.4.3
    │ │   └── domelementtype@1.1.1
    │ ├── entities@0.5.0
    │ ├─┬ htmlparser2@3.4.0
    │ │ ├── domelementtype@1.1.1
    │ │ ├── domhandler@2.2.0
    │ │ ├── domutils@1.3.0
    │ │ └─┬ readable-stream@1.1.13-1
    │ │   ├── core-util-is@1.0.1
    │ │   ├── inherits@2.0.1
    │ │   ├── isarray@0.0.1
    │ │   └── string_decoder@0.10.25-1
    │ └── underscore@1.5.2
    ├── class-extend@0.1.1
    ├── dargs@0.1.0
    ├── debug@0.7.4
    ├── diff@1.0.8
    ├─┬ download@0.1.17
    │ ├─┬ decompress@0.2.4
    │ │ ├── adm-zip@0.4.4
    │ │ ├─┬ extname@0.1.2
    │ │ │ └── ext-list@0.1.0
    │ │ ├── map-key@0.1.4
    │ │ ├─┬ stream-combiner@0.0.4
    │ │ │ └── duplexer@0.1.1
    │ │ ├─┬ tar@0.1.19
    │ │ │ ├── block-stream@0.0.7
    │ │ │ ├─┬ fstream@0.1.25
    │ │ │ │ └── graceful-fs@2.0.3
    │ │ │ └── inherits@2.0.1
    │ │ └─┬ tempfile@0.1.3
    │ │   └── uuid@1.4.1
    │ ├── each-async@0.1.3
    │ ├── get-stdin@0.1.0
    │ ├── get-urls@0.1.2
    │ ├─┬ nopt@2.2.1
    │ │ └── abbrev@1.0.5
    │ ├─┬ request@2.36.0
    │ │ ├── aws-sign2@0.5.0
    │ │ ├── forever-agent@0.5.2
    │ │ ├─┬ form-data@0.1.3
    │ │ │ ├── async@0.9.0
    │ │ │ └─┬ combined-stream@0.0.4
    │ │ │   └── delayed-stream@0.0.5
    │ │ ├─┬ hawk@1.0.0
    │ │ │ ├── boom@0.4.2
    │ │ │ ├── cryptiles@0.2.2
    │ │ │ ├── hoek@0.9.1
    │ │ │ └── sntp@0.2.4
    │ │ ├─┬ http-signature@0.10.0
    │ │ │ ├── asn1@0.1.11
    │ │ │ ├── assert-plus@0.1.2
    │ │ │ └── ctype@0.5.2
    │ │ ├── json-stringify-safe@5.0.0
    │ │ ├── node-uuid@1.4.1
    │ │ ├── oauth-sign@0.3.0
    │ │ ├── qs@0.6.6
    │ │ ├─┬ tough-cookie@0.12.1
    │ │ │ └── punycode@1.2.4
    │ │ └── tunnel-agent@0.4.0
    │ └─┬ through2@0.4.2
    │   ├─┬ readable-stream@1.0.27-1
    │   │ ├── core-util-is@1.0.1
    │   │ ├── inherits@2.0.1
    │   │ ├── isarray@0.0.1
    │   │ └── string_decoder@0.10.25-1
    │   └─┬ xtend@2.1.2
    │     └── object-keys@0.4.0
    ├─┬ file-utils@0.1.5
    │ ├── isbinaryfile@0.1.9
    │ ├── lodash@2.1.0
    │ └─┬ minimatch@0.2.14
    │   ├── lru-cache@2.5.0
    │   └── sigmund@1.0.0
    ├── findup-sync@0.1.3
    ├─┬ glob@3.2.11
    │ ├── inherits@2.0.1
    │ └─┬ minimatch@0.3.0
    │   ├── lru-cache@2.5.0
    │   └── sigmund@1.0.0
    ├── iconv-lite@0.2.11
    ├─┬ inquirer@0.4.1
    │ ├─┬ cli-color@0.2.3
    │ │ ├── es5-ext@0.9.2
    │ │ └─┬ memoizee@0.2.6
    │ │   ├── event-emitter@0.2.2
    │ │   └── next-tick@0.1.0
    │ ├── mute-stream@0.0.4
    │ ├── readline2@0.1.0
    │ └── through@2.3.4
    ├── isbinaryfile@2.0.1
    ├── mime@1.2.11
    ├── mkdirp@0.3.5
    ├─┬ request@2.30.0
    │ ├── aws-sign2@0.5.0
    │ ├── forever-agent@0.5.2
    │ ├─┬ form-data@0.1.3
    │ │ ├── async@0.9.0
    │ │ └─┬ combined-stream@0.0.4
    │ │   └── delayed-stream@0.0.5
    │ ├─┬ hawk@1.0.0
    │ │ ├── boom@0.4.2
    │ │ ├── cryptiles@0.2.2
    │ │ ├── hoek@0.9.1
    │ │ └── sntp@0.2.4
    │ ├─┬ http-signature@0.10.0
    │ │ ├── asn1@0.1.11
    │ │ ├── assert-plus@0.1.2
    │ │ └── ctype@0.5.2
    │ ├── json-stringify-safe@5.0.0
    │ ├── node-uuid@1.4.1
    │ ├── oauth-sign@0.3.0
    │ ├── qs@0.6.6
    │ ├─┬ tough-cookie@0.9.15
    │ │ └── punycode@1.2.4
    │ └── tunnel-agent@0.3.0
    ├── rimraf@2.2.8
    ├── text-table@0.2.0
    └── underscore.string@2.3.3
eddiemonge commented 10 years ago

I would say try removing the generator-angular and yo and then install them again

ghost commented 10 years ago

@eddiemonge I am having same issue with few others when I try to "yo angular". How can we completely unistall generator-angular and whole yo and reinstall them again?

My stack: yo 1.1.2 bower 1.3.5 grunt-cli v0.1.13 OSX Mavericks 10.9.3

eddiemonge commented 10 years ago
npm remove -g yo generator-angular generator-karma
npm install -g generator-angular
eddiemonge commented 10 years ago

Unless the issue persists, I am closing this. I also can't reproduce it and it seems like something gone wrong in the npm install related to lodash. Or some completely off the wall unreproduceable error.

johnwp commented 10 years ago

That seemed to work, thank you.

netxph commented 10 years ago

Sorry, but the fix didn't work for me :( I have yo 1.2.0 and generator-angular 0.9.3.

eddiemonge commented 10 years ago

what OS?

netxph commented 10 years ago

Sorry, I was able to resolve it, but still I don't know why...

OS: Windows

To reproduce

After using the installer directly from Node site. The problem went away. It may have something to do with path being used is still too long. But that's still a hunch.

jcdalton2201 commented 10 years ago

it appears that there is a private version of lodash (emmetio/lodash) that if you have install atom and emmet then you might have this version of lodash cache if you run npm cache clean this should fix the issue also.