Passed
Pull Request — master (#16)
by Inumidun
01:24
created

sample/folder-schema.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 28
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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