Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 44 |
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', 'NotFound.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: [ |
||
34 | 'Home.component.spec.js', |
||
35 | 'About.component.spec.js', |
||
36 | 'Common.component.spec.js', |
||
37 | 'Routes.component.spec.js', |
||
38 | 'NotFound.component.spec.js' |
||
39 | ] }, |
||
40 | { e2e: ['e2e.txt'] }, |
||
41 | 'mocha-helper.js' |
||
42 | ] |
||
43 | } |
||
44 | ]; |
||
45 |