Currently we have everything located in index.js and test.js. I'd like to break these files apart, keeping a structure similar to #74. That would give us a file structure like this:
.
├── customizers
│ ├── addBabelPlugin.js
│ ├── addBabelPlugin.spec.js
│ ├── addBabelPlugins.js
│ └── addBabelPlugins.spec.js
├── utilities
│ ├── getBabelLoader.js
│ └── getBabelLoader.spec.js
└── index.js
Currently we have everything located in
index.jsandtest.js. I'd like to break these files apart, keeping a structure similar to #74. That would give us a file structure like this: