ga-wdi-boston / ember

Introduction to Ember.js
Other
9 stars 112 forks source link

The image showing return of running tree is incorrect #34

Open BenGitsCode opened 7 years ago

BenGitsCode commented 7 years ago

It's not updated since the depodification. It should look like this:

├── app
│   ├── adapters
│   │   └── application.js
│   ├── app.js
│   ├── components
│   ├── helpers
│   ├── index.html
│   ├── models
│   ├── resolver.js
│   ├── router.js
│   ├── routes
│   ├── serializers
│   │   └── application.js
│   ├── services
│   │   └── auth.js
│   ├── styles
│   │   └── app.scss
│   └── templates
│       ├── application.hbs
│       └── components
├── bower.json
├── config
│   └── environment.js
├── ember-cli-build.js
├── grunt
│   ├── aliases.json
│   ├── jscs.json
│   ├── jshint.json
│   ├── jsonlint.json
│   └── paths.json
├── package.json
├── public
│   ├── crossdomain.xml
│   ├── favicon.ico
│   └── robots.txt
├── testem.js
├── tests
│   ├── helpers
│   │   ├── destroy-app.js
│   │   ├── module-for-acceptance.js
│   │   ├── resolver.js
│   │   └── start-app.js
│   ├── index.html
│   ├── integration
│   ├── test-helper.js
│   └── unit
│       ├── adapters
│       │   └── application-test.js
│       ├── serializers
│       │   └── application-test.js
│       └── services
│           └── auth-test.js
└── vendor