mrdavidlaing / pressupbox-development-boilerplate

Patterns and practices for teams to collaborating on WordPress projects
Other
1 stars 5 forks source link

directory structure #35

Open daithi-coombes opened 11 years ago

daithi-coombes commented 11 years ago

our current directory structure has redundant directories in the dist/ folder:

./
├── dist
│   └── public
│       ├── public
│       │   └── wp-content
│       │       ├── plugins
│       │       └── themes
│       │           └── ...
│       └── wp-content
│           ├── plugins
│           │   └── plugins
│           ├── themes
│           │   ├── themes
│           │   │   └── ...
│           │   └── twentytwelve
│           │       ├── ...
│           └── wp-content
│               ├── plugins
│               └── themes
│                   └── twentytwelve
│                       ├── ...
├── public
│   └── wp-content
│       └── themes
├── src
│   └── public
│       ├── docs
│       └── wp-content
│           ├── plugins
│           └── themes
│               └── twentytwelve
│                   ├── ...
└── tests

suggest changing it to:

./
├── dist
│   └── public
│       └── docs
│       └── wp-content
│           ├── plugins
│           ├── themes
│           │   └── twentytwelve
│           │       ├── ...
├── src
│   └── public
│       ├── docs
│       └── wp-content
│           ├── plugins
│           └── themes
│               └── twentytwelve
│                   ├── ...
└── tests