DEV Community

Discussion on: Mastering Webpack

Collapse
 
joshcheek profile image
Josh Cheek

For displaying directory structures, check out tree:

$ tree bundle-app
bundle-app/
├── dist
│   └── index.html
├── package.json
├── package.lock.json
├── src
│   ├── hero.js
│   └── index.js
└── webpack.config.js

2 directories, 6 files
Enter fullscreen mode Exit fullscreen mode

If you're on a mac, brew install tree

Collapse
 
kalashin1 profile image
Kinanee Samson

Okay, where can I get tree from??

Collapse
 
joshcheek profile image
Josh Cheek

If you're on a mac: brew install tree