ember-animation / liquid-fire

Animations & transitions for ambitious Ember applications.
Other
1.15k stars 199 forks source link

No Velocity on 0.26.2+ #519

Closed spencer516 closed 4 years ago

spencer516 commented 7 years ago

I'm not sure wether this is a Liquid Fire or an Ember-cli issue — so sorry for that in advance.

The short of it: my animations, which are in an addon, stopped working once I upgraded to any version after 0.26.1.

Error is: undefined is not an object (evaluating '_velocity["default"].defaults[key] = props[key]')

Digging into it, it looks like my app doesn't have Velocity at all ($.Velocity and Ember.$.Velocity are both undefined). The fallback of an empty function defined in the velocity shim file is used instead.

If I remove the else if (haveShimAMDSupport(app)) block from Liquid Fire's index.js, the issue goes away. I added some logs and it looks like the included hook fires twice: once where the app does have an amdModulesName key and once where it does not. My knowledge of Ember-CLI's internals aren't deep enough to know the context of why it's twice and why the app in each case is something else entirely — but, I can only guess it has something to do with this being an addon and, possibly, my recent upgrade to Ember-cli 2.9.1.

Happy to help troubleshoot or provide any more details as needed. Thanks!

ef4 commented 7 years ago

Thanks for the bug report, can you please share the output of npm ls? I am guessing this can happen if you have both a direct dependency on liquid-fire and an indirect dependency through another addon.

spencer516 commented 7 years ago

Certainly. I suppose I also left out that this is an addon that we're using as an Engine — and this emerged after making it into one. (Though, I also did a bunch of npm upgrades in the middle of that too).

Output for `npm ls` ├─┬ broccoli-asset-rev@2.5.0 │ ├── broccoli-asset-rewrite@1.1.0 │ ├─┬ broccoli-filter@1.2.4 │ │ ├── broccoli-plugin@1.2.2 │ │ ├── copy-dereference@1.0.0 │ │ └─┬ mkdirp@0.5.1 │ │ └── minimist@0.0.8 │ ├─┬ json-stable-stringify@1.0.1 │ │ └── jsonify@0.0.0 │ ├── matcher-collection@1.0.4 │ └── rsvp@3.3.3 ├─┬ broccoli-stew@1.4.0 │ ├─┬ broccoli-funnel@1.0.7 │ │ ├── array-equal@1.0.0 │ │ ├── blank-object@1.0.2 │ │ ├── fast-ordered-set@1.0.3 │ │ ├── heimdalljs@0.2.1 │ │ └── path-posix@1.0.0 │ ├─┬ broccoli-merge-trees@1.1.4 │ │ └─┬ can-symlink@1.0.0 │ │ └── tmp@0.0.28 │ ├─┬ broccoli-persistent-filter@1.2.11 │ │ ├─┬ async-disk-cache@1.0.8 │ │ │ └─┬ istextorbinary@2.1.0 │ │ │ ├── binaryextensions@2.0.0 │ │ │ ├── editions@1.3.1 │ │ │ └── textextensions@2.0.1 │ │ └─┬ md5-hex@1.3.0 │ │ └── md5-o-matic@0.1.1 │ ├─┬ chalk@1.1.3 │ │ ├── ansi-styles@2.2.1 │ │ ├─┬ has-ansi@2.0.0 │ │ │ └── ansi-regex@2.0.0 │ │ ├── strip-ansi@3.0.1 │ │ └── supports-color@2.0.0 │ ├─┬ debug@2.2.0 │ │ └── ms@0.7.1 │ ├── ensure-posix-path@1.0.2 │ ├─┬ fs-extra@0.30.0 │ │ ├── graceful-fs@4.1.9 │ │ ├── jsonfile@2.4.0 │ │ ├── klaw@1.3.1 │ │ └── path-is-absolute@1.0.1 │ ├─┬ minimatch@3.0.3 │ │ └─┬ brace-expansion@1.1.6 │ │ ├── balanced-match@0.4.2 │ │ └── concat-map@0.0.1 │ ├── resolve@1.1.7 │ └── walk-sync@0.3.1 ├── ember-ajax@2.5.2 ├─┬ ember-cli@2.9.1 │ ├── amd-name-resolver@0.0.6 │ ├── bower@1.7.9 │ ├─┬ bower-config@1.4.0 │ │ ├── mout@1.0.0 │ │ ├─┬ optimist@0.6.1 │ │ │ ├── minimist@0.0.10 │ │ │ └── wordwrap@0.0.3 │ │ ├─┬ osenv@0.1.3 │ │ │ └── os-homedir@1.0.2 │ │ └── untildify@2.1.0 │ ├── bower-endpoint-parser@0.2.2 │ ├─┬ broccoli-babel-transpiler@5.6.1 │ │ ├─┬ babel-core@5.8.38 │ │ │ ├── babel-plugin-constant-folding@1.0.1 │ │ │ ├── babel-plugin-dead-code-elimination@1.0.2 │ │ │ ├── babel-plugin-eval@1.0.1 │ │ │ ├── babel-plugin-inline-environment-variables@1.0.1 │ │ │ ├── babel-plugin-jscript@1.0.4 │ │ │ ├── babel-plugin-member-expression-literals@1.0.1 │ │ │ ├── babel-plugin-property-literals@1.0.1 │ │ │ ├── babel-plugin-proto-to-assign@1.0.4 │ │ │ ├── babel-plugin-react-constant-elements@1.0.3 │ │ │ ├── babel-plugin-react-display-name@1.0.3 │ │ │ ├── babel-plugin-remove-console@1.0.1 │ │ │ ├── babel-plugin-remove-debugger@1.0.1 │ │ │ ├── babel-plugin-runtime@1.0.7 │ │ │ ├─┬ babel-plugin-undeclared-variables-check@1.0.2 │ │ │ │ └── leven@1.0.2 │ │ │ ├── babel-plugin-undefined-to-void@1.1.6 │ │ │ ├── babylon@5.8.38 │ │ │ ├── bluebird@2.11.0 │ │ │ ├── convert-source-map@1.3.0 │ │ │ ├── core-js@1.2.7 │ │ │ ├─┬ detect-indent@3.0.1 │ │ │ │ └── minimist@1.2.0 │ │ │ ├── esutils@2.0.2 │ │ │ ├── fs-readdir-recursive@0.1.2 │ │ │ ├── globals@6.4.1 │ │ │ ├─┬ home-or-tmp@1.0.0 │ │ │ │ └── user-home@1.1.1 │ │ │ ├─┬ is-integer@1.0.6 │ │ │ │ └── is-finite@1.0.2 │ │ │ ├── js-tokens@1.0.1 │ │ │ ├── json5@0.4.0 │ │ │ ├── lodash@3.10.1 │ │ │ ├── minimatch@2.0.10 │ │ │ ├── output-file-sync@1.1.2 │ │ │ ├── path-exists@1.0.0 │ │ │ ├── private@0.1.6 │ │ │ ├─┬ regenerator@0.8.40 │ │ │ │ ├─┬ commoner@0.10.4 │ │ │ │ │ ├─┬ detective@4.3.2 │ │ │ │ │ │ └── defined@1.0.0 │ │ │ │ │ ├── glob@5.0.15 │ │ │ │ │ └── q@1.4.1 │ │ │ │ ├─┬ defs@1.1.1 │ │ │ │ │ ├─┬ alter@0.2.0 │ │ │ │ │ │ └── stable@0.1.5 │ │ │ │ │ ├── ast-traverse@0.1.1 │ │ │ │ │ ├── breakable@1.0.0 │ │ │ │ │ ├── simple-fmt@0.1.0 │ │ │ │ │ ├── simple-is@0.2.0 │ │ │ │ │ ├── stringmap@0.2.2 │ │ │ │ │ ├── stringset@0.2.1 │ │ │ │ │ ├── tryor@0.1.2 │ │ │ │ │ └─┬ yargs@3.27.0 │ │ │ │ │ └── window-size@0.1.4 │ │ │ │ ├── esprima-fb@15001.1001.0-dev-harmony-fb │ │ │ │ └─┬ recast@0.10.33 │ │ │ │ └── ast-types@0.8.12 │ │ │ ├─┬ regexpu@1.3.0 │ │ │ │ ├── esprima@2.7.3 │ │ │ │ ├── regenerate@1.3.1 │ │ │ │ ├── regjsgen@0.2.0 │ │ │ │ └─┬ regjsparser@0.1.5 │ │ │ │ └── jsesc@0.5.0 │ │ │ ├── repeating@1.1.3 │ │ │ ├── shebang-regex@1.0.0 │ │ │ ├── slash@1.0.0 │ │ │ ├── source-map@0.5.6 │ │ │ ├─┬ source-map-support@0.2.10 │ │ │ │ └── source-map@0.1.32 │ │ │ ├── to-fast-properties@1.0.2 │ │ │ ├── trim-right@1.0.1 │ │ │ └── try-resolve@1.0.1 │ │ └── clone@0.2.0 │ ├─┬ broccoli-brocfile-loader@0.18.0 │ │ └─┬ findup-sync@0.4.3 │ │ ├─┬ detect-file@0.1.0 │ │ │ └── fs-exists-sync@0.1.0 │ │ ├─┬ is-glob@2.0.1 │ │ │ └── is-extglob@1.0.0 │ │ ├─┬ micromatch@2.3.11 │ │ │ ├─┬ arr-diff@2.0.0 │ │ │ │ └── arr-flatten@1.0.1 │ │ │ ├── array-unique@0.2.1 │ │ │ ├─┬ braces@1.8.5 │ │ │ │ ├─┬ expand-range@1.8.2 │ │ │ │ │ └─┬ fill-range@2.2.3 │ │ │ │ │ ├── is-number@2.1.0 │ │ │ │ │ ├── isobject@2.1.0 │ │ │ │ │ ├── randomatic@1.1.5 │ │ │ │ │ └── repeat-string@1.6.1 │ │ │ │ ├── preserve@0.2.0 │ │ │ │ └── repeat-element@1.1.2 │ │ │ ├─┬ expand-brackets@0.1.5 │ │ │ │ └── is-posix-bracket@0.1.1 │ │ │ ├── extglob@0.3.2 │ │ │ ├── filename-regex@2.0.0 │ │ │ ├─┬ kind-of@3.0.4 │ │ │ │ └── is-buffer@1.1.4 │ │ │ ├── normalize-path@2.0.1 │ │ │ ├─┬ object.omit@2.0.0 │ │ │ │ ├─┬ for-own@0.1.4 │ │ │ │ │ └── for-in@0.1.6 │ │ │ │ └── is-extendable@0.1.1 │ │ │ ├─┬ parse-glob@3.0.4 │ │ │ │ ├─┬ glob-base@0.3.0 │ │ │ │ │ └── glob-parent@2.0.0 │ │ │ │ └── is-dotfile@1.0.2 │ │ │ └─┬ regex-cache@0.4.3 │ │ │ ├── is-equal-shallow@0.1.3 │ │ │ └── is-primitive@2.0.0 │ │ └─┬ resolve-dir@0.1.1 │ │ ├── expand-tilde@1.2.2 │ │ └─┬ global-modules@0.2.3 │ │ ├─┬ global-prefix@0.1.4 │ │ │ └── ini@1.3.4 │ │ └── is-windows@0.2.0 │ ├── broccoli-builder@0.18.0 │ ├─┬ broccoli-concat@2.3.8 │ │ ├─┬ broccoli-caching-writer@2.3.1 │ │ │ ├─┬ broccoli-kitchen-sink-helpers@0.2.9 │ │ │ │ └── glob@5.0.15 │ │ │ ├── broccoli-plugin@1.1.0 │ │ │ └── walk-sync@0.2.7 │ │ ├─┬ fast-sourcemap-concat@1.1.0 │ │ │ ├─┬ chalk@0.5.1 │ │ │ │ ├── ansi-styles@1.1.0 │ │ │ │ ├─┬ has-ansi@0.1.0 │ │ │ │ │ └── ansi-regex@0.2.1 │ │ │ │ ├── strip-ansi@0.3.0 │ │ │ │ └── supports-color@0.2.0 │ │ │ ├─┬ memory-streams@0.1.0 │ │ │ │ └─┬ readable-stream@1.0.34 │ │ │ │ └── isarray@0.0.1 │ │ │ └─┬ source-map@0.4.4 │ │ │ └── amdefine@1.0.0 │ │ ├── lodash.merge@4.6.0 │ │ ├── lodash.omit@4.5.0 │ │ └── lodash.uniq@4.5.0 │ ├── broccoli-config-loader@1.0.0 │ ├─┬ broccoli-config-replace@1.1.2 │ │ └── fs-extra@0.24.0 │ ├── broccoli-funnel-reducer@1.0.0 │ ├─┬ broccoli-middleware@0.18.1 │ │ ├─┬ handlebars@4.0.5 │ │ │ └── source-map@0.4.4 │ │ └── mime@1.3.4 │ ├── broccoli-source@1.1.0 │ ├── clean-base-url@1.0.0 │ ├─┬ compression@1.6.2 │ │ ├─┬ accepts@1.3.3 │ │ │ ├── mime-types@2.1.12 │ │ │ └── negotiator@0.6.1 │ │ ├── bytes@2.3.0 │ │ ├─┬ compressible@2.0.8 │ │ │ └── mime-db@1.24.0 │ │ ├── on-headers@1.0.1 │ │ └── vary@1.1.0 │ ├─┬ configstore@2.1.0 │ │ ├─┬ dot-prop@3.0.0 │ │ │ └── is-obj@1.0.1 │ │ ├── object-assign@4.1.0 │ │ ├── os-tmpdir@1.0.2 │ │ ├── uuid@2.0.3 │ │ ├─┬ write-file-atomic@1.2.0 │ │ │ ├── imurmurhash@0.1.4 │ │ │ └── slide@1.1.6 │ │ └── xdg-basedir@2.0.0 │ ├── core-object@2.0.6 │ ├── diff@1.4.0 │ ├─┬ ember-cli-broccoli-sane-watcher@2.0.3 │ │ └── broccoli-slow-trees@3.0.1 │ ├── ember-cli-get-component-path-option@1.0.0 │ ├── ember-cli-is-package-missing@1.0.0 │ ├─┬ ember-cli-legacy-blueprints@0.1.2 │ │ ├── ember-cli-get-dependency-depth@1.0.0 │ │ ├── ember-cli-valid-component-name@1.0.0 │ │ ├─┬ ember-router-generator@1.2.2 │ │ │ └─┬ recast@0.11.14 │ │ │ ├── ast-types@0.9.0 │ │ │ └── esprima@3.0.0 │ │ └── fs-extra@0.24.0 │ ├── ember-cli-lodash-subset@1.0.11 │ ├── ember-cli-normalize-entity-name@1.0.0 │ ├─┬ ember-cli-preprocess-registry@3.0.0 │ │ ├─┬ broccoli-clean-css@1.1.0 │ │ │ ├─┬ clean-css-promise@0.1.1 │ │ │ │ ├─┬ array-to-error@1.1.1 │ │ │ │ │ └── array-to-sentence@1.1.0 │ │ │ │ └─┬ clean-css@3.4.20 │ │ │ │ ├── commander@2.8.1 │ │ │ │ └── source-map@0.4.4 │ │ │ └─┬ inline-source-map-comment@1.0.5 │ │ │ ├── minimist@1.2.0 │ │ │ ├── sum-up@1.0.3 │ │ │ └── xtend@4.0.1 │ │ ├── lodash@4.16.4 │ │ └── process-relative-require@1.0.0 │ ├── ember-cli-string-utils@1.0.0 │ ├─┬ ember-try@0.2.6 │ │ ├─┬ cli-table2@0.2.0 │ │ │ └── colors@1.1.2 │ │ ├── core-object@1.1.0 │ │ ├─┬ ember-cli-babel@5.1.10 │ │ │ └── clone@1.0.2 │ │ ├─┬ ember-try-config@2.1.0 │ │ │ ├── lodash@4.16.4 │ │ │ └─┬ node-fetch@1.6.3 │ │ │ ├── encoding@0.1.12 │ │ │ └── is-stream@1.1.0 │ │ ├── extend@3.0.0 │ │ ├── fs-extra@0.26.7 │ │ └── sync-exec@0.6.2 │ ├── escape-string-regexp@1.0.5 │ ├── exists-sync@0.0.3 │ ├── exit@0.1.2 │ ├─┬ express@4.14.0 │ │ ├── array-flatten@1.1.1 │ │ ├── content-disposition@0.5.1 │ │ ├── content-type@1.0.2 │ │ ├── cookie@0.3.1 │ │ ├── cookie-signature@1.0.6 │ │ ├── depd@1.1.0 │ │ ├── encodeurl@1.0.1 │ │ ├── escape-html@1.0.3 │ │ ├── etag@1.7.0 │ │ ├─┬ finalhandler@0.5.0 │ │ │ ├── statuses@1.3.0 │ │ │ └── unpipe@1.0.0 │ │ ├── fresh@0.3.0 │ │ ├── merge-descriptors@1.0.1 │ │ ├── methods@1.1.2 │ │ ├─┬ on-finished@2.3.0 │ │ │ └── ee-first@1.1.1 │ │ ├── parseurl@1.3.1 │ │ ├── path-to-regexp@0.1.7 │ │ ├─┬ proxy-addr@1.1.2 │ │ │ ├── forwarded@0.1.0 │ │ │ └── ipaddr.js@1.1.1 │ │ ├── qs@6.2.0 │ │ ├── range-parser@1.2.0 │ │ ├─┬ send@0.14.1 │ │ │ ├── destroy@1.0.4 │ │ │ └─┬ http-errors@1.5.0 │ │ │ ├── inherits@2.0.1 │ │ │ └── setprototypeof@1.0.1 │ │ ├── serve-static@1.11.1 │ │ ├─┬ type-is@1.6.13 │ │ │ └── media-typer@0.3.0 │ │ └── utils-merge@1.0.0 │ ├── filesize@3.3.0 │ ├─┬ find-up@1.1.2 │ │ ├── path-exists@2.1.0 │ │ └─┬ pinkie-promise@2.0.1 │ │ └── pinkie@2.0.4 │ ├── fs-tree-diff@0.5.3 │ ├── get-caller-file@1.0.2 │ ├── git-repo-info@1.3.1 │ ├─┬ glob@7.0.6 │ │ ├── fs.realpath@1.0.0 │ │ ├─┬ inflight@1.0.6 │ │ │ └── wrappy@1.0.2 │ │ ├── inherits@2.0.3 │ │ └── once@1.4.0 │ ├── heimdalljs-fs-monitor@0.0.3 │ ├── heimdalljs-logger@0.1.7 │ ├─┬ http-proxy@1.15.2 │ │ ├── eventemitter3@1.2.0 │ │ └── requires-port@1.0.0 │ ├── inflection@1.10.0 │ ├─┬ inquirer@1.2.2 │ │ ├── ansi-escapes@1.4.0 │ │ ├─┬ cli-cursor@1.0.2 │ │ │ └─┬ restore-cursor@1.0.1 │ │ │ ├── exit-hook@1.1.1 │ │ │ └── onetime@1.1.0 │ │ ├── cli-width@2.1.0 │ │ ├─┬ external-editor@1.1.0 │ │ │ └─┬ spawn-sync@1.0.15 │ │ │ └── os-shim@0.1.3 │ │ ├── figures@1.7.0 │ │ ├── lodash@4.16.4 │ │ ├── mute-stream@0.0.6 │ │ ├─┬ run-async@2.2.0 │ │ │ └── is-promise@2.1.0 │ │ ├── rx@4.1.0 │ │ └─┬ string-width@1.0.2 │ │ ├─┬ code-point-at@1.0.1 │ │ │ └── number-is-nan@1.0.1 │ │ └── is-fullwidth-code-point@1.0.0 │ ├── is-git-url@0.2.3 │ ├── isbinaryfile@3.0.1 │ ├─┬ leek@0.0.23 │ │ └─┬ lodash.assign@3.2.0 │ │ ├─┬ lodash._baseassign@3.2.0 │ │ │ └── lodash._basecopy@3.0.1 │ │ ├─┬ lodash._createassigner@3.1.1 │ │ │ ├── lodash._bindcallback@3.0.1 │ │ │ └── lodash._isiterateecall@3.0.9 │ │ └── lodash.keys@3.1.2 │ ├─┬ lodash.template@4.4.0 │ │ ├── lodash._reinterpolate@3.0.0 │ │ └── lodash.templatesettings@4.1.0 │ ├─┬ markdown-it@7.0.1 │ │ ├─┬ argparse@1.0.9 │ │ │ └── sprintf-js@1.0.3 │ │ ├── entities@1.1.1 │ │ ├── linkify-it@2.0.2 │ │ ├── mdurl@1.0.1 │ │ └── uc.micro@1.0.3 │ ├─┬ markdown-it-terminal@0.0.4 │ │ ├─┬ cardinal@0.5.0 │ │ │ ├── ansicolors@0.2.1 │ │ │ └─┬ redeyed@0.5.0 │ │ │ └── esprima-fb@12001.1.0-dev-harmony-fb │ │ ├─┬ cli-table@0.3.1 │ │ │ └── colors@1.0.3 │ │ ├─┬ lodash.merge@3.3.2 │ │ │ ├── lodash._arraycopy@3.0.0 │ │ │ ├── lodash._arrayeach@3.0.0 │ │ │ ├── lodash._getnative@3.9.1 │ │ │ ├── lodash.isarguments@3.1.0 │ │ │ ├── lodash.isarray@3.0.4 │ │ │ ├─┬ lodash.isplainobject@3.2.0 │ │ │ │ └── lodash._basefor@3.0.3 │ │ │ ├── lodash.istypedarray@3.0.6 │ │ │ ├── lodash.keysin@3.0.8 │ │ │ └── lodash.toplainobject@3.0.0 │ │ └─┬ markdown-it@4.4.0 │ │ └── linkify-it@1.2.4 │ ├─┬ morgan@1.7.0 │ │ └── basic-auth@1.0.4 │ ├── node-modules-path@1.0.1 │ ├── node-uuid@1.4.7 │ ├─┬ nopt@3.0.6 │ │ └── abbrev@1.0.9 │ ├─┬ npm@2.15.5 │ │ ├── abbrev@1.0.7 │ │ ├── ansi@0.3.1 │ │ ├── ansi-regex@2.0.0 │ │ ├── ansicolors@0.3.2 │ │ ├── ansistyles@0.1.3 │ │ ├── archy@1.0.0 │ │ ├── async-some@1.0.2 │ │ ├── block-stream@0.0.9 │ │ ├── char-spinner@1.0.1 │ │ ├── chmodr@1.0.2 │ │ ├── chownr@1.0.1 │ │ ├── cmd-shim@2.0.2 │ │ ├─┬ columnify@1.5.4 │ │ │ └─┬ wcwidth@1.0.0 │ │ │ └─┬ defaults@1.0.3 │ │ │ └── clone@1.0.2 │ │ ├─┬ config-chain@1.1.10 │ │ │ └── proto-list@1.2.4 │ │ ├─┬ dezalgo@1.0.3 │ │ │ └── asap@2.0.3 │ │ ├── editor@1.0.0 │ │ ├── fs-vacuum@1.2.9 │ │ ├─┬ fs-write-stream-atomic@1.0.8 │ │ │ └── iferr@0.1.5 │ │ ├── fstream@1.0.8 │ │ ├─┬ fstream-npm@1.0.7 │ │ │ └── fstream-ignore@1.0.3 │ │ ├── github-url-from-git@1.4.0 │ │ ├── github-url-from-username-repo@1.0.2 │ │ ├─┬ glob@7.0.3 │ │ │ └── path-is-absolute@1.0.0 │ │ ├── graceful-fs@4.1.4 │ │ ├── hosted-git-info@2.1.4 │ │ ├── imurmurhash@0.1.4 │ │ ├── inflight@1.0.4 │ │ ├── inherits@2.0.1 │ │ ├── ini@1.3.4 │ │ ├─┬ init-package-json@1.9.3 │ │ │ ├─┬ glob@6.0.4 │ │ │ │ └── path-is-absolute@1.0.0 │ │ │ └── promzard@0.3.0 │ │ ├── lockfile@1.0.1 │ │ ├─┬ lru-cache@4.0.1 │ │ │ ├── pseudomap@1.0.2 │ │ │ └── yallist@2.0.0 │ │ ├─┬ minimatch@3.0.0 │ │ │ └─┬ brace-expansion@1.1.1 │ │ │ ├── balanced-match@0.2.1 │ │ │ └── concat-map@0.0.1 │ │ ├─┬ mkdirp@0.5.1 │ │ │ └── minimist@0.0.8 │ │ ├─┬ node-gyp@3.3.1 │ │ │ ├─┬ glob@4.5.3 │ │ │ │ └─┬ minimatch@2.0.10 │ │ │ │ └─┬ brace-expansion@1.1.3 │ │ │ │ ├── balanced-match@0.3.0 │ │ │ │ └── concat-map@0.0.1 │ │ │ ├─┬ minimatch@1.0.0 │ │ │ │ ├── lru-cache@2.7.3 │ │ │ │ └── sigmund@1.0.1 │ │ │ └─┬ path-array@1.0.1 │ │ │ └─┬ array-index@1.0.0 │ │ │ ├─┬ debug@2.2.0 │ │ │ │ └── ms@0.7.1 │ │ │ └─┬ es6-symbol@3.0.2 │ │ │ ├── d@0.1.1 │ │ │ └─┬ es5-ext@0.10.11 │ │ │ └── es6-iterator@2.0.0 │ │ ├── nopt@3.0.6 │ │ ├── normalize-git-url@3.0.2 │ │ ├─┬ normalize-package-data@2.3.5 │ │ │ └─┬ is-builtin-module@1.0.0 │ │ │ └── builtin-modules@1.1.0 │ │ ├── npm-cache-filename@1.0.2 │ │ ├── npm-install-checks@1.0.7 │ │ ├── npm-package-arg@4.1.0 │ │ ├─┬ npm-registry-client@7.1.0 │ │ │ ├─┬ concat-stream@1.5.1 │ │ │ │ ├─┬ readable-stream@2.0.5 │ │ │ │ │ ├── core-util-is@1.0.2 │ │ │ │ │ ├── isarray@0.0.1 │ │ │ │ │ ├── process-nextick-args@1.0.6 │ │ │ │ │ ├── string_decoder@0.10.31 │ │ │ │ │ └── util-deprecate@1.0.2 │ │ │ │ └── typedarray@0.0.6 │ │ │ └── retry@0.8.0 │ │ ├── npm-user-validate@0.1.2 │ │ ├─┬ npmlog@2.0.3 │ │ │ ├─┬ are-we-there-yet@1.1.2 │ │ │ │ └── delegates@1.0.0 │ │ │ └─┬ gauge@1.2.7 │ │ │ ├── has-unicode@2.0.0 │ │ │ ├─┬ lodash.pad@4.1.0 │ │ │ │ ├── lodash.repeat@4.0.2 │ │ │ │ └── lodash.tostring@4.1.2 │ │ │ ├── lodash.padend@4.2.0 │ │ │ └── lodash.padstart@4.2.0 │ │ ├── once@1.3.3 │ │ ├── opener@1.4.1 │ │ ├─┬ osenv@0.1.3 │ │ │ ├── os-homedir@1.0.0 │ │ │ └── os-tmpdir@1.0.1 │ │ ├── path-is-inside@1.0.1 │ │ ├─┬ read@1.0.7 │ │ │ └── mute-stream@0.0.5 │ │ ├─┬ read-installed@4.0.3 │ │ │ ├── debuglog@1.0.1 │ │ │ ├── readdir-scoped-modules@1.0.2 │ │ │ └── util-extend@1.0.1 │ │ ├─┬ read-package-json@2.0.4 │ │ │ ├─┬ glob@6.0.4 │ │ │ │ └── path-is-absolute@1.0.0 │ │ │ └─┬ json-parse-helpfulerror@1.0.3 │ │ │ └── jju@1.3.0 │ │ ├─┬ readable-stream@2.1.2 │ │ │ ├── core-util-is@1.0.2 │ │ │ ├── isarray@1.0.0 │ │ │ ├── process-nextick-args@1.0.7 │ │ │ ├── string_decoder@0.10.31 │ │ │ └── util-deprecate@1.0.2 │ │ ├─┬ realize-package-specifier@3.0.3 │ │ │ └── npm-package-arg@4.1.1 │ │ ├─┬ request@2.72.0 │ │ │ ├── aws-sign2@0.6.0 │ │ │ ├── aws4@1.3.2 │ │ │ ├─┬ bl@1.1.2 │ │ │ │ └─┬ readable-stream@2.0.6 │ │ │ │ ├── core-util-is@1.0.2 │ │ │ │ ├── isarray@1.0.0 │ │ │ │ ├── process-nextick-args@1.0.7 │ │ │ │ ├── string_decoder@0.10.31 │ │ │ │ └── util-deprecate@1.0.2 │ │ │ ├── caseless@0.11.0 │ │ │ ├─┬ combined-stream@1.0.5 │ │ │ │ └── delayed-stream@1.0.0 │ │ │ ├── extend@3.0.0 │ │ │ ├── forever-agent@0.6.1 │ │ │ ├─┬ form-data@1.0.0-rc4 │ │ │ │ └── async@1.5.2 │ │ │ ├─┬ har-validator@2.0.6 │ │ │ │ ├─┬ chalk@1.1.3 │ │ │ │ │ ├── ansi-styles@2.2.1 │ │ │ │ │ ├── escape-string-regexp@1.0.5 │ │ │ │ │ ├── has-ansi@2.0.0 │ │ │ │ │ └── supports-color@2.0.0 │ │ │ │ ├─┬ commander@2.9.0 │ │ │ │ │ └── graceful-readlink@1.0.1 │ │ │ │ ├─┬ is-my-json-valid@2.13.1 │ │ │ │ │ ├── generate-function@2.0.0 │ │ │ │ │ ├─┬ generate-object-property@1.2.0 │ │ │ │ │ │ └── is-property@1.0.2 │ │ │ │ │ ├── jsonpointer@2.0.0 │ │ │ │ │ └── xtend@4.0.1 │ │ │ │ └─┬ pinkie-promise@2.0.1 │ │ │ │ └── pinkie@2.0.4 │ │ │ ├─┬ hawk@3.1.3 │ │ │ │ ├── boom@2.10.1 │ │ │ │ ├── cryptiles@2.0.5 │ │ │ │ ├── hoek@2.16.3 │ │ │ │ └── sntp@1.0.9 │ │ │ ├─┬ http-signature@1.1.1 │ │ │ │ ├── assert-plus@0.2.0 │ │ │ │ ├─┬ jsprim@1.2.2 │ │ │ │ │ ├── extsprintf@1.0.2 │ │ │ │ │ ├── json-schema@0.2.2 │ │ │ │ │ └── verror@1.3.6 │ │ │ │ └─┬ sshpk@1.8.3 │ │ │ │ ├── asn1@0.2.3 │ │ │ │ ├── assert-plus@1.0.0 │ │ │ │ ├── dashdash@1.13.1 │ │ │ │ ├── ecc-jsbn@0.1.1 │ │ │ │ ├── getpass@0.1.6 │ │ │ │ ├── jodid25519@1.0.2 │ │ │ │ ├── jsbn@0.1.0 │ │ │ │ └── tweetnacl@0.13.3 │ │ │ ├── is-typedarray@1.0.0 │ │ │ ├── isstream@0.1.2 │ │ │ ├── json-stringify-safe@5.0.1 │ │ │ ├─┬ mime-types@2.1.11 │ │ │ │ └── mime-db@1.23.0 │ │ │ ├── node-uuid@1.4.7 │ │ │ ├── oauth-sign@0.8.2 │ │ │ ├── qs@6.1.0 │ │ │ ├── stringstream@0.0.5 │ │ │ ├── tough-cookie@2.2.2 │ │ │ └── tunnel-agent@0.4.3 │ │ ├── retry@0.9.0 │ │ ├─┬ rimraf@2.5.2 │ │ │ └─┬ glob@7.0.0 │ │ │ └── path-is-absolute@1.0.0 │ │ ├── semver@5.1.0 │ │ ├─┬ sha@2.0.1 │ │ │ └─┬ readable-stream@2.0.2 │ │ │ ├── core-util-is@1.0.1 │ │ │ ├── isarray@0.0.1 │ │ │ ├── process-nextick-args@1.0.3 │ │ │ ├── string_decoder@0.10.31 │ │ │ └── util-deprecate@1.0.1 │ │ ├── slide@1.1.6 │ │ ├── sorted-object@2.0.0 │ │ ├── spdx-license-ids@1.2.1 │ │ ├── strip-ansi@3.0.1 │ │ ├── tar@2.2.1 │ │ ├── text-table@0.2.0 │ │ ├── uid-number@0.0.6 │ │ ├── umask@1.1.0 │ │ ├─┬ validate-npm-package-license@3.0.1 │ │ │ ├── spdx-correct@1.0.2 │ │ │ └─┬ spdx-expression-parse@1.0.2 │ │ │ └── spdx-exceptions@1.0.4 │ │ ├─┬ validate-npm-package-name@2.2.2 │ │ │ └── builtins@0.0.7 │ │ ├─┬ which@1.2.8 │ │ │ ├─┬ is-absolute@0.1.7 │ │ │ │ └── is-relative@0.1.3 │ │ │ └── isexe@1.1.2 │ │ ├── wrappy@1.0.1 │ │ └── write-file-atomic@1.1.4 │ ├─┬ npm-package-arg@4.2.0 │ │ └── hosted-git-info@2.1.5 │ ├─┬ ora@0.2.3 │ │ └── cli-spinners@0.1.2 │ ├─┬ portfinder@1.0.9 │ │ └── async@1.5.2 │ ├── promise-map-series@0.2.3 │ ├─┬ quick-temp@0.1.6 │ │ ├── mktemp@0.4.0 │ │ ├── rimraf@2.2.8 │ │ └── underscore.string@2.3.3 │ ├─┬ sane@1.4.1 │ │ ├── exec-sh@0.2.0 │ │ ├─┬ fb-watchman@1.9.0 │ │ │ └─┬ bser@1.0.2 │ │ │ └── node-int64@0.4.0 │ │ ├── minimist@1.2.0 │ │ ├─┬ walker@1.0.7 │ │ │ └─┬ makeerror@1.0.11 │ │ │ └── tmpl@1.0.4 │ │ └── watch@0.10.0 │ ├── semver@5.3.0 │ ├── silent-error@1.0.1 │ ├── symlink-or-copy@1.1.6 │ ├─┬ temp@0.8.3 │ │ └── rimraf@2.2.8 │ ├─┬ testem@1.13.0 │ │ ├─┬ backbone@1.3.3 │ │ │ └── underscore@1.8.3 │ │ ├── bluebird@3.4.6 │ │ ├── charm@1.0.1 │ │ ├─┬ commander@2.9.0 │ │ │ └── graceful-readlink@1.0.1 │ │ ├─┬ consolidate@0.14.1 │ │ │ └── bluebird@3.4.6 │ │ ├─┬ cross-spawn@4.0.2 │ │ │ ├─┬ lru-cache@4.0.1 │ │ │ │ ├── pseudomap@1.0.2 │ │ │ │ └── yallist@2.0.0 │ │ │ └─┬ which@1.2.11 │ │ │ └── isexe@1.1.2 │ │ ├── did_it_work@0.0.6 │ │ ├─┬ fireworm@0.7.1 │ │ │ ├── async@0.2.10 │ │ │ ├─┬ is-type@0.0.1 │ │ │ │ └── core-util-is@1.0.2 │ │ │ ├── lodash.debounce@3.1.1 │ │ │ └─┬ lodash.flatten@3.0.2 │ │ │ └── lodash._baseflatten@3.1.4 │ │ ├─┬ js-yaml@3.6.1 │ │ │ └── esprima@2.7.3 │ │ ├── lodash.assignin@4.2.0 │ │ ├── lodash.clonedeep@4.5.0 │ │ ├── lodash.find@4.6.0 │ │ ├── mustache@2.2.1 │ │ ├─┬ node-notifier@4.6.1 │ │ │ ├─┬ cli-usage@0.1.4 │ │ │ │ ├── marked@0.3.6 │ │ │ │ └─┬ marked-terminal@1.7.0 │ │ │ │ ├─┬ cardinal@1.0.0 │ │ │ │ │ └─┬ redeyed@1.0.1 │ │ │ │ │ └── esprima@3.0.0 │ │ │ │ ├── lodash.assign@4.2.0 │ │ │ │ └─┬ node-emoji@1.4.1 │ │ │ │ └── string.prototype.codepointat@0.2.0 │ │ │ ├── growly@1.3.0 │ │ │ ├─┬ lodash.clonedeep@3.0.2 │ │ │ │ └── lodash._baseclone@3.3.0 │ │ │ ├── minimist@1.2.0 │ │ │ └── shellwords@0.1.0 │ │ ├─┬ npmlog@4.0.0 │ │ │ ├─┬ are-we-there-yet@1.1.2 │ │ │ │ ├── delegates@1.0.0 │ │ │ │ └── readable-stream@2.1.5 │ │ │ ├── console-control-strings@1.1.0 │ │ │ ├─┬ gauge@2.6.0 │ │ │ │ ├── aproba@1.0.4 │ │ │ │ ├── has-color@0.1.7 │ │ │ │ ├── has-unicode@2.0.1 │ │ │ │ ├── signal-exit@3.0.1 │ │ │ │ └── wide-align@1.1.0 │ │ │ └── set-blocking@2.0.0 │ │ ├── printf@0.2.5 │ │ ├─┬ socket.io@1.5.0 │ │ │ ├─┬ engine.io@1.7.0 │ │ │ │ ├── base64id@0.1.0 │ │ │ │ ├─┬ engine.io-parser@1.3.0 │ │ │ │ │ ├── after@0.8.1 │ │ │ │ │ ├── arraybuffer.slice@0.0.6 │ │ │ │ │ ├── base64-arraybuffer@0.1.5 │ │ │ │ │ ├── blob@0.0.4 │ │ │ │ │ ├─┬ has-binary@0.1.6 │ │ │ │ │ │ └── isarray@0.0.1 │ │ │ │ │ └── wtf-8@1.0.0 │ │ │ │ └─┬ ws@1.1.1 │ │ │ │ ├── options@0.0.6 │ │ │ │ └── ultron@1.0.2 │ │ │ ├─┬ has-binary@0.1.7 │ │ │ │ └── isarray@0.0.1 │ │ │ ├─┬ socket.io-adapter@0.4.0 │ │ │ │ └─┬ socket.io-parser@2.2.2 │ │ │ │ ├── debug@0.7.4 │ │ │ │ ├── isarray@0.0.1 │ │ │ │ └── json3@3.2.6 │ │ │ ├─┬ socket.io-client@1.5.0 │ │ │ │ ├── backo2@1.0.2 │ │ │ │ ├── component-bind@1.0.0 │ │ │ │ ├── component-emitter@1.2.0 │ │ │ │ ├─┬ engine.io-client@1.7.0 │ │ │ │ │ ├── component-inherit@0.0.3 │ │ │ │ │ ├── has-cors@1.1.0 │ │ │ │ │ ├── parsejson@0.0.1 │ │ │ │ │ ├── parseqs@0.0.2 │ │ │ │ │ ├── xmlhttprequest-ssl@1.5.1 │ │ │ │ │ └── yeast@0.1.2 │ │ │ │ ├── indexof@0.0.1 │ │ │ │ ├── object-component@0.0.3 │ │ │ │ ├─┬ parseuri@0.0.4 │ │ │ │ │ └─┬ better-assert@1.0.2 │ │ │ │ │ └── callsite@1.0.0 │ │ │ │ └── to-array@0.1.4 │ │ │ └─┬ socket.io-parser@2.2.6 │ │ │ ├── benchmark@1.0.0 │ │ │ ├── component-emitter@1.1.2 │ │ │ ├── isarray@0.0.1 │ │ │ └── json3@3.3.2 │ │ ├── spawn-args@0.2.0 │ │ ├── styled_string@0.0.1 │ │ ├─┬ tap-parser@1.3.2 │ │ │ ├── events-to-array@1.0.2 │ │ │ └─┬ readable-stream@2.1.5 │ │ │ ├── buffer-shims@1.0.0 │ │ │ ├── isarray@1.0.0 │ │ │ ├── process-nextick-args@1.0.7 │ │ │ ├── string_decoder@0.10.31 │ │ │ └── util-deprecate@1.0.2 │ │ └── xmldom@0.1.22 │ ├── through@2.3.8 │ ├─┬ tiny-lr@0.2.1 │ │ ├─┬ body-parser@1.14.2 │ │ │ ├── bytes@2.2.0 │ │ │ ├── http-errors@1.3.1 │ │ │ ├── iconv-lite@0.4.13 │ │ │ ├── qs@5.2.0 │ │ │ └─┬ raw-body@2.1.7 │ │ │ └── bytes@2.4.0 │ │ ├─┬ faye-websocket@0.10.0 │ │ │ └─┬ websocket-driver@0.6.5 │ │ │ └── websocket-extensions@0.1.1 │ │ ├── livereload-js@2.2.2 │ │ └── qs@5.1.0 │ ├─┬ tree-sync@1.1.4 │ │ └── walk-sync@0.2.7 │ └── yam@0.0.22 ├─┬ ember-cli-app-version@2.0.1 │ └─┬ git-repo-version@0.4.1 │ └── git-repo-info@1.2.0 ├─┬ ember-cli-babel@5.1.10 │ ├── clone@1.0.2 │ └─┬ ember-cli-version-checker@1.1.7 │ └── semver@4.3.6 ├─┬ ember-cli-dependency-checker@1.3.0 │ ├─┬ chalk@0.5.1 │ │ ├── ansi-styles@1.1.0 │ │ ├─┬ has-ansi@0.1.0 │ │ │ └── ansi-regex@0.2.1 │ │ ├── strip-ansi@0.3.0 │ │ └── supports-color@0.2.0 │ ├── is-git-url@0.2.0 │ └── semver@4.3.6 ├─┬ ember-cli-deprecation-workflow@0.2.3 │ ├─┬ broccoli-kitchen-sink-helpers@0.3.1 │ │ └── glob@5.0.15 │ ├── ember-debug-handlers-polyfill@1.0.3 │ └── rimraf@2.5.4 ├─┬ ember-cli-eslint@3.0.0 │ ├─┬ broccoli-lint-eslint@3.1.0 │ │ └─┬ eslint@3.8.1 │ │ ├─┬ concat-stream@1.5.2 │ │ │ ├── readable-stream@2.0.6 │ │ │ └── typedarray@0.0.6 │ │ ├── doctrine@1.5.0 │ │ ├─┬ escope@3.6.0 │ │ │ ├─┬ es6-map@0.1.4 │ │ │ │ ├── d@0.1.1 │ │ │ │ ├── es5-ext@0.10.12 │ │ │ │ ├── es6-iterator@2.0.0 │ │ │ │ ├── es6-set@0.1.4 │ │ │ │ ├── es6-symbol@3.1.0 │ │ │ │ └── event-emitter@0.3.4 │ │ │ ├── es6-weak-map@2.0.1 │ │ │ └─┬ esrecurse@4.1.0 │ │ │ └── estraverse@4.1.1 │ │ ├─┬ espree@3.3.2 │ │ │ ├── acorn@4.0.3 │ │ │ └─┬ acorn-jsx@3.0.1 │ │ │ └── acorn@3.3.0 │ │ ├── estraverse@4.2.0 │ │ ├─┬ file-entry-cache@2.0.0 │ │ │ └─┬ flat-cache@1.2.1 │ │ │ ├── circular-json@0.3.1 │ │ │ ├─┬ del@2.2.2 │ │ │ │ ├─┬ globby@5.0.0 │ │ │ │ │ ├─┬ array-union@1.0.2 │ │ │ │ │ │ └── array-uniq@1.0.3 │ │ │ │ │ └── arrify@1.0.1 │ │ │ │ ├── is-path-cwd@1.0.0 │ │ │ │ ├─┬ is-path-in-cwd@1.0.0 │ │ │ │ │ └── is-path-inside@1.0.0 │ │ │ │ └── pify@2.3.0 │ │ │ └── write@0.2.1 │ │ ├── globals@9.12.0 │ │ ├── ignore@3.2.0 │ │ ├─┬ inquirer@0.12.0 │ │ │ ├─┬ readline2@1.0.1 │ │ │ │ └── mute-stream@0.0.5 │ │ │ ├── run-async@0.1.0 │ │ │ └── rx-lite@3.1.2 │ │ ├─┬ is-my-json-valid@2.15.0 │ │ │ ├── generate-function@2.0.0 │ │ │ ├─┬ generate-object-property@1.2.0 │ │ │ │ └── is-property@1.0.2 │ │ │ └── jsonpointer@4.0.0 │ │ ├─┬ is-resolvable@1.0.0 │ │ │ └── tryit@1.0.2 │ │ ├─┬ levn@0.3.0 │ │ │ ├── prelude-ls@1.1.2 │ │ │ └── type-check@0.3.2 │ │ ├── lodash@4.16.4 │ │ ├── natural-compare@1.4.0 │ │ ├─┬ optionator@0.8.2 │ │ │ ├── deep-is@0.1.3 │ │ │ ├── fast-levenshtein@2.0.5 │ │ │ └── wordwrap@1.0.0 │ │ ├── path-is-inside@1.0.2 │ │ ├── pluralize@1.2.1 │ │ ├── progress@1.1.8 │ │ ├─┬ require-uncached@1.0.2 │ │ │ ├─┬ caller-path@0.1.0 │ │ │ │ └── callsites@0.2.0 │ │ │ └── resolve-from@1.0.1 │ │ ├── shelljs@0.6.1 │ │ ├── strip-bom@3.0.0 │ │ ├── strip-json-comments@1.0.4 │ │ ├─┬ table@3.8.3 │ │ │ ├─┬ ajv@4.8.2 │ │ │ │ └── co@4.6.0 │ │ │ ├── ajv-keywords@1.1.1 │ │ │ ├── lodash@4.16.4 │ │ │ ├── slice-ansi@0.0.4 │ │ │ └─┬ string-width@2.0.0 │ │ │ └── is-fullwidth-code-point@2.0.0 │ │ ├── text-table@0.2.0 │ │ └── user-home@2.0.0 │ └── js-string-escape@1.0.1 ├─┬ ember-cli-htmlbars@1.1.0 │ ├── hash-for-dep@1.0.3 │ └─┬ strip-bom@2.0.0 │ └── is-utf8@0.2.1 ├─┬ ember-cli-htmlbars-inline-precompile@0.3.5 │ └── babel-plugin-htmlbars-inline-precompile@0.1.0 ├── ember-cli-inject-live-reload@1.4.1 ├─┬ ember-cli-mirage@0.2.2 │ ├── broccoli-unwatched-tree@0.1.1 │ ├─┬ ember-cli-node-assets@0.1.4 │ │ └── lodash@4.16.4 │ ├── ember-inflector@1.9.6 │ ├─┬ ember-lodash@0.0.9 │ │ └── lodash-es@3.10.1 │ ├── fake-xml-http-request@1.4.0 │ ├── faker@3.0.1 │ ├─┬ pretender@1.4.1 │ │ └── route-recognizer@0.2.7 │ └── route-recognizer@0.1.11 ├─┬ ember-cli-moment-shim@1.3.0 │ ├─┬ lodash.defaults@3.1.2 │ │ └── lodash.restparam@3.6.1 │ ├── moment@2.15.2 │ └── moment-timezone@0.5.7 ├─┬ ember-cli-qunit@3.0.2 │ ├─┬ ember-qunit@1.0.0 │ │ └─┬ ember-test-helpers@0.5.34 │ │ └── klassy@0.1.3 │ ├── qunit-notifications@0.1.1 │ └── qunitjs@2.0.1 ├─┬ ember-cli-release@0.2.9 │ ├─┬ git-tools@0.1.4 │ │ └── spawnback@1.0.0 │ ├── make-array@0.1.2 │ ├── merge@1.2.0 │ ├── moment-timezone@0.3.1 │ └── semver@4.3.6 ├─┬ ember-cli-sass@5.3.1 │ └─┬ broccoli-sass-source-maps@1.8.1 │ ├── broccoli-caching-writer@3.0.3 │ ├── include-path-searcher@0.1.0 │ ├── mkdirp@0.3.5 │ ├─┬ node-sass@3.10.1 │ │ ├── async-foreach@0.1.3 │ │ ├── cross-spawn@3.0.1 │ │ ├─┬ gaze@1.1.2 │ │ │ └─┬ globule@1.1.0 │ │ │ ├── glob@7.1.1 │ │ │ └── lodash@4.16.4 │ │ ├── get-stdin@4.0.1 │ │ ├── in-publish@2.0.0 │ │ ├── lodash.assign@4.2.0 │ │ ├─┬ meow@3.7.0 │ │ │ ├─┬ camelcase-keys@2.1.0 │ │ │ │ └── camelcase@2.1.1 │ │ │ ├── decamelize@1.2.0 │ │ │ ├─┬ loud-rejection@1.6.0 │ │ │ │ └─┬ currently-unhandled@0.4.1 │ │ │ │ └── array-find-index@1.0.2 │ │ │ ├── map-obj@1.0.1 │ │ │ ├── minimist@1.2.0 │ │ │ ├─┬ normalize-package-data@2.3.5 │ │ │ │ ├─┬ is-builtin-module@1.0.0 │ │ │ │ │ └── builtin-modules@1.1.1 │ │ │ │ └─┬ validate-npm-package-license@3.0.1 │ │ │ │ ├─┬ spdx-correct@1.0.2 │ │ │ │ │ └── spdx-license-ids@1.2.2 │ │ │ │ └── spdx-expression-parse@1.0.4 │ │ │ ├─┬ read-pkg-up@1.0.1 │ │ │ │ └─┬ read-pkg@1.1.0 │ │ │ │ ├─┬ load-json-file@1.1.0 │ │ │ │ │ └─┬ parse-json@2.2.0 │ │ │ │ │ └─┬ error-ex@1.3.0 │ │ │ │ │ └── is-arrayish@0.2.1 │ │ │ │ └── path-type@1.1.0 │ │ │ ├─┬ redent@1.0.0 │ │ │ │ ├─┬ indent-string@2.1.0 │ │ │ │ │ └── repeating@2.0.1 │ │ │ │ └── strip-indent@1.0.1 │ │ │ └── trim-newlines@1.0.0 │ │ ├── nan@2.4.0 │ │ ├─┬ node-gyp@3.4.0 │ │ │ ├── fstream@1.0.10 │ │ │ ├── npmlog@3.1.2 │ │ │ ├─┬ path-array@1.0.1 │ │ │ │ └── array-index@1.0.0 │ │ │ └─┬ tar@2.2.1 │ │ │ └── block-stream@0.0.9 │ │ ├─┬ request@2.76.0 │ │ │ ├── aws-sign2@0.6.0 │ │ │ ├── aws4@1.5.0 │ │ │ ├── caseless@0.11.0 │ │ │ ├─┬ combined-stream@1.0.5 │ │ │ │ └── delayed-stream@1.0.0 │ │ │ ├── forever-agent@0.6.1 │ │ │ ├─┬ form-data@2.1.1 │ │ │ │ └── asynckit@0.4.0 │ │ │ ├── har-validator@2.0.6 │ │ │ ├─┬ hawk@3.1.3 │ │ │ │ ├── boom@2.10.1 │ │ │ │ ├── cryptiles@2.0.5 │ │ │ │ ├── hoek@2.16.3 │ │ │ │ └── sntp@1.0.9 │ │ │ ├─┬ http-signature@1.1.1 │ │ │ │ ├── assert-plus@0.2.0 │ │ │ │ ├─┬ jsprim@1.3.1 │ │ │ │ │ ├── extsprintf@1.0.2 │ │ │ │ │ ├── json-schema@0.2.3 │ │ │ │ │ └── verror@1.3.6 │ │ │ │ └─┬ sshpk@1.10.1 │ │ │ │ ├── asn1@0.2.3 │ │ │ │ ├── assert-plus@1.0.0 │ │ │ │ ├── bcrypt-pbkdf@1.0.0 │ │ │ │ ├─┬ dashdash@1.14.0 │ │ │ │ │ └── assert-plus@1.0.0 │ │ │ │ ├── ecc-jsbn@0.1.1 │ │ │ │ ├─┬ getpass@0.1.6 │ │ │ │ │ └── assert-plus@1.0.0 │ │ │ │ ├── jodid25519@1.0.2 │ │ │ │ ├── jsbn@0.1.0 │ │ │ │ └── tweetnacl@0.14.3 │ │ │ ├── is-typedarray@1.0.0 │ │ │ ├── isstream@0.1.2 │ │ │ ├── json-stringify-safe@5.0.1 │ │ │ ├── oauth-sign@0.8.2 │ │ │ ├── qs@6.3.0 │ │ │ ├── stringstream@0.0.5 │ │ │ ├─┬ tough-cookie@2.3.2 │ │ │ │ └── punycode@1.4.1 │ │ │ └── tunnel-agent@0.4.3 │ │ └─┬ sass-graph@2.1.2 │ │ ├── lodash@4.16.4 │ │ └─┬ yargs@4.8.1 │ │ ├─┬ cliui@3.2.0 │ │ │ └── wrap-ansi@2.0.0 │ │ ├── lodash.assign@4.2.0 │ │ ├─┬ os-locale@1.4.0 │ │ │ └─┬ lcid@1.0.0 │ │ │ └── invert-kv@1.0.0 │ │ ├── require-directory@2.1.1 │ │ ├── require-main-filename@1.0.1 │ │ ├── which-module@1.0.0 │ │ ├── window-size@0.2.0 │ │ ├── y18n@3.2.1 │ │ └─┬ yargs-parser@2.4.1 │ │ ├── camelcase@3.0.0 │ │ └── lodash.assign@4.2.0 │ └── object-assign@2.1.1 ├─┬ ember-cli-sri@2.1.1 │ └─┬ broccoli-sri-hash@2.1.2 │ └── sri-toolbox@0.2.0 ├── ember-cli-test-loader@1.1.0 ├─┬ ember-cli-uglify@1.2.0 │ └─┬ broccoli-uglify-sourcemap@1.4.2 │ ├── source-map-url@0.3.0 │ ├─┬ uglify-js@2.7.4 │ │ ├── async@0.2.10 │ │ ├── uglify-to-browserify@1.0.2 │ │ └─┬ yargs@3.10.0 │ │ ├── camelcase@1.2.1 │ │ ├─┬ cliui@2.1.0 │ │ │ ├─┬ center-align@0.1.3 │ │ │ │ ├─┬ align-text@0.1.4 │ │ │ │ │ └── longest@1.0.1 │ │ │ │ └── lazy-cache@1.0.4 │ │ │ ├── right-align@0.1.3 │ │ │ └── wordwrap@0.0.2 │ │ └── window-size@0.1.0 │ └── walk-sync@0.1.3 ├── ember-composable-helpers@1.1.2 ├─┬ ember-concurrency@0.7.15 │ ├── ember-getowner-polyfill@1.0.1 │ └─┬ ember-maybe-import-regenerator@0.1.4 │ └── regenerator-runtime@0.9.5 ├─┬ ember-data@2.9.0 │ ├── amd-name-resolver@0.0.5 │ ├── babel-plugin-feature-flags@0.2.3 │ ├── babel-plugin-filter-imports@0.2.1 │ ├─┬ broccoli-file-creator@1.1.1 │ │ ├─┬ broccoli-kitchen-sink-helpers@0.2.9 │ │ │ └── glob@5.0.15 │ │ ├── broccoli-writer@0.1.1 │ │ └── rsvp@3.0.21 │ ├── ember-cli-path-utils@1.0.0 │ ├── ember-cli-test-info@1.0.0 │ ├── ember-runtime-enumerable-includes-polyfill@1.0.1 │ └── npm-git-info@1.0.3 ├── ember-disable-prototype-extensions@1.1.0 ├─┬ ember-engines@0.3.4 │ └── lodash@4.16.4 ├── ember-export-application-global@1.1.1 ├─┬ ember-hook@1.3.5 │ └── ember-get-config@0.1.11 ├── ember-i18n@4.3.2 ├── ember-load-initializers@0.5.1 ├── ember-moment@7.0.0-beta.3 ├── ember-qunit@0.4.22 extraneous ├── ember-resolver@2.1.0 ├── ember-route-action-helper@2.0.0 ├─┬ ember-simple-auth@1.1.0 │ └── ember-getowner-polyfill@1.0.0 ├─┬ ember-sinon@0.5.1 │ └─┬ sinon@1.17.6 │ ├── formatio@1.1.1 │ ├── lolex@1.3.2 │ ├── samsam@1.1.2 │ └─┬ util@0.10.3 │ └── inherits@2.0.1 ├── ember-truth-helpers@1.2.0 ├── ember-validations@2.0.0-alpha.4 ├── ff-checkbox@1.0.0 extraneous ├── ff-radio@1.0.0 extraneous ├── git-repo-version@0.3.0 extraneous ├─┬ liquid-fire@0.26.1 │ ├── ember-hash-helper-polyfill@0.1.1 │ ├── match-media@0.2.0 │ └── velocity-animate@1.3.1 ├─┬ liquid-tether@2.0.0-beta.2 │ ├─┬ broccoli-funnel@0.2.15 │ │ ├── fs-tree-diff@0.3.1 │ │ ├── minimatch@2.0.10 │ │ └── walk-sync@0.2.7 │ ├── broccoli-merge-trees@0.2.4 │ ├─┬ liquid-wormhole@2.0.0-beta.2 │ │ ├── ember-weakmap@2.0.0 │ │ └── perf-primitives@0.0.4 │ └── tether@1.4.0 (git://github.com/pzuraq/tether.git#d5b32427b6fc3d45e5f08ba74cfcb4afb32d16e7) ├── loader.js@4.0.11 ├── qunitjs@1.23.1 extraneous ├── ticketfly-ember-models@0.0.0 (git+ssh://git@github.com/ticketfly/ticketfly-ember-models.git#b6920474f1c3d2197a3b3501ba4e829d3c636050) └─┬ ticketfly-ui@0.1.2 -> ~/ticketfly-ui invalid ├── broccoli-asset-rev@2.4.6 extraneous ├── ember-ajax@2.5.1 extraneous ├── ember-cli@2.6.2 extraneous ├── ember-cli-app-version@1.0.1 extraneous ├── ember-cli-babel@5.1.10 extraneous ├── ember-cli-dependency-checker@1.3.0 extraneous ├── ember-cli-fastboot@0.6.2 extraneous ├── ember-cli-flash@1.3.15 extraneous ├── ember-cli-github-pages@0.1.2 extraneous ├── ember-cli-htmlbars-inline-precompile@0.3.5 extraneous ├── ember-cli-inject-live-reload@1.4.1 extraneous ├── ember-cli-jshint@1.0.5 extraneous ├── ember-cli-moment-shim@2.0.0 extraneous ├── ember-cli-qunit@1.4.2 extraneous ├── ember-cli-release@0.2.9 extraneous ├── ember-cli-sass@5.5.2 extraneous ├── ember-cli-sri@2.1.1 extraneous ├── ember-cli-uglify@1.2.0 extraneous ├── ember-code-snippet@1.8.0 extraneous ├── ember-disable-prototype-extensions@1.1.0 extraneous ├── ember-export-application-global@1.0.5 extraneous ├── ember-load-initializers@0.5.1 extraneous ├── ember-moment@7.0.0-beta.3 extraneous ├── ember-resolver@2.1.0 extraneous ├── express@4.14.0 extraneous ├── ff-checkbox@1.0.0 extraneous ├── ff-date-fields@1.0.1 extraneous ├── ff-radio@1.0.0 extraneous ├── liquid-fire@0.24.1 extraneous ├── liquid-tether@1.1.1 extraneous ├── loader.js@4.0.11 extraneous └── sass-styleguide@1.0.1 extraneous (git://github.com/ticketfly/sass-styleguide.git#146f0aab835bd8e90c5f6bfd0e5069bb286cca3f)
knownasilya commented 7 years ago

I think I might be having a similar issue, also using LF in an engine.

The Broccoli Plugin: [SimpleConcat: Concat: Vendor /assets/engine-vendor.css] failed with:
Error: ENOENT: no such file or directory, stat '/Users/iradchenko/workspace/wflhd/tmp/simple_concat-input_base_path-343Zm5MN.tmp/0/vendor/liquid-fire.css'
    at Error (native)
    at Object.fs.statSync (fs.js:987:18)
    at Concat.keyForFile (/Users/iradchenko/workspace/wflhd/node_modules/ember-engines/node_modules/broccoli-caching-writer/index.js:87:20)
    at Array.map (native)
    at Concat.CachingWriter._conditionalBuild (/Users/iradchenko/workspace/wflhd/node_modules/ember-engines/node_modules/broccoli-caching-writer/index.js:109:65)
    at /Users/iradchenko/workspace/wflhd/node_modules/broccoli-plugin/read_compat.js:61:34
    at tryCatch (/Users/iradchenko/workspace/wflhd/node_modules/rsvp/dist/rsvp.js:538:12)
    at invokeCallback (/Users/iradchenko/workspace/wflhd/node_modules/rsvp/dist/rsvp.js:553:13)
    at publish (/Users/iradchenko/workspace/wflhd/node_modules/rsvp/dist/rsvp.js:521:7)
    at flush (/Users/iradchenko/workspace/wflhd/node_modules/rsvp/dist/rsvp.js:2373:5)

The broccoli plugin was instantiated at: 
    at Concat.Plugin (/Users/iradchenko/workspace/wflhd/node_modules/broccoli-plugin/index.js:7:31)
    at Concat.CachingWriter [as constructor] (/Users/iradchenko/workspace/wflhd/node_modules/ember-engines/node_modules/broccoli-caching-writer/index.js:18:10)
    at new Concat (/Users/iradchenko/workspace/wflhd/node_modules/ember-engines/node_modules/broccoli-concat/concat.js:33:17)
    at module.exports (/Users/iradchenko/workspace/wflhd/node_modules/ember-engines/node_modules/broccoli-concat/index.js:26:10)
    at CoreObject.buildVendorCSSWithImports (/Users/iradchenko/workspace/wflhd/node_modules/ember-engines/lib/engine-addon.js:171:7)
    at CoreObject.treeForPublic (/Users/iradchenko/workspace/wflhd/node_modules/ember-engines/lib/engine-addon.js:454:61)
    at CoreObject._treeFor (/Users/iradchenko/workspace/wflhd/node_modules/ember-cli/lib/models/addon.js:371:33)
    at CoreObject.treeFor (/Users/iradchenko/workspace/wflhd/node_modules/ember-engines/lib/engine-addon.js:649:23)
    at /Users/iradchenko/workspace/wflhd/node_modules/ember-cli/lib/broccoli/ember-app.js:498:20
    at Array.map (native)
jbailey4 commented 7 years ago

I'm seeing this issue too with engines, and the same fix @spencer516 provided temporarily fixes the issue.

knownasilya commented 7 years ago

https://github.com/ember-animation/liquid-fire/pull/524

ef4 commented 7 years ago

I think this is fixed in 0.26.5, please give it a try.

winne42 commented 4 years ago

@spencer516 , @knownasilya : Did 0.26.5 fix your problem? Can this issue be closed?

spencer516 commented 4 years ago

@winne42 — I sincerely have no clue!. Haven't used Liquid Fire in a few years.

I'm going to guess we're okay...I'll close the issue.