Completed
Push — master ( e2c47b...19fc28 )
by Felipe
52s
created

rollup.config.min.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 26
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
c 1
b 0
f 0
nc 1
dl 0
loc 26
rs 10
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 1
1
import uglify from 'rollup-plugin-uglify';
0 ignored issues
show
introduced by
Definition for rule 'keyword-spacing' was not found
Loading history...
2
3
export default {
4
  input: "./src/backbone.umd.js",
5
  extend: true,
6
7
  plugins: [
8
    uglify({
9
      mangle: false
10
    })
11
  ],
12
  output: {
13
    file: "dist/backbone.min.js",
14
    format: "umd",
15
    exports: 'named',
16
    name: 'BackboneES6',
17
    sourcemap: true
18
19
  },
20
21
  external: ['underscore', 'jquery'],
22
  globals: {
23
    jquery: '$',
24
    underscore: '_'
25
  }
26
};
27