sample/folder-schema.js   A
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 44
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
nc 1
dl 0
loc 44
rs 10
noi 0
cc 0
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
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