gulp-cli/test/fixtures
├─┬ build         Build all the things!
│ │ --dev         …un-minified
│ │ --production  …compressed into single bundle
│ └─┬ <series>
│   ├── clean
│   ├── scripts
│   └── styles
├── clean         Delete dist folder
├─┬ default       Build and watch for changes
│ └─┬ <series>
│   ├─┬ build
│   │ └─┬ <series>
│   │   ├── clean
│   │   ├── scripts
│   │   └── styles
│   └── watch
├── scripts       Bundles JavaScript
├── serve         Serves files reloading
│   --lr          …with live reloading
├── styles        Compiles and bundles CSS
└── watch         Watch files and build on change
