| Total Complexity | 0 |
| Complexity/F | 0 |
| Lines of Code | 28 |
| Function Count | 0 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | module.exports = [ |
||
| 2 | { |
||
| 3 | src: [ |
||
| 4 | { |
||
| 5 | components: [ |
||
| 6 | { common: ['Button.component.jsx'] }, |
||
| 7 | { static: ['About.component.jsx'] }, |
||
| 8 | 'Routes.component.jsx', |
||
| 9 | 'Home.component.jsx' |
||
| 10 | ] |
||
| 11 | }, |
||
| 12 | { actions: ['actionTypes.js'] }, |
||
| 13 | { reducers: ['root.reducer.js'] }, |
||
| 14 | { utils: ['helper.js'] }, |
||
| 15 | 'index.jsx', |
||
| 16 | 'store.js' |
||
| 17 | ] |
||
| 18 | }, |
||
| 19 | { |
||
| 20 | dist: [ |
||
| 21 | { css: ['style.css'] }, |
||
| 22 | { js: ['script.js'] }, |
||
| 23 | { vendor: ['vendor.txt'] }, |
||
| 24 | { images: ['images.txt'] }, |
||
| 25 | 'index.html' |
||
| 26 | ] |
||
| 27 | } |
||
| 28 | ]; |
||
| 29 |