| Total Complexity | 0 |
| Complexity/F | 0 |
| Lines of Code | 38 |
| 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: ['Common.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 | { styles: ['style.less', 'style.scss'] }, |
||
| 16 | 'index.jsx', |
||
| 17 | 'store.js' |
||
| 18 | ] |
||
| 19 | }, |
||
| 20 | { |
||
| 21 | dist: [ |
||
| 22 | { css: ['style.css'] }, |
||
| 23 | { js: ['script.js'] }, |
||
| 24 | { vendor: ['vendor.txt'] }, |
||
| 25 | { images: ['images.txt'] }, |
||
| 26 | 'index.html' |
||
| 27 | ] |
||
| 28 | }, |
||
| 29 | { |
||
| 30 | test: [ |
||
| 31 | { actions: ['actionTypes.spec.js'] }, |
||
| 32 | { reducers: ['root.reducer.spec.js'] }, |
||
| 33 | { components: ['Home.component.spec.js'] }, |
||
| 34 | { e2e: ['e2e.txt'] }, |
||
| 35 | 'mocha-helper.js' |
||
| 36 | ] |
||
| 37 | } |
||
| 38 | ]; |
||
| 39 |