upgrade jasmine, dependabot, rollup

This commit is contained in:
Nathan Cahill
2020-06-10 16:42:41 +02:00
parent 76a973ac8a
commit 5d0f64db46
16 changed files with 9144 additions and 6259 deletions

View File

@@ -1,5 +1,5 @@
import buble from 'rollup-plugin-buble'
import { uglify } from 'rollup-plugin-uglify'
import buble from '@rollup/plugin-buble'
import { terser } from 'rollup-plugin-terser'
const pkg = require('./package.json')
@@ -31,13 +31,6 @@ export default [
sourcemap: true,
file: pkg['minified:main'],
},
plugins: [
buble(),
uglify({
output: {
comments: /^!/,
},
}),
],
plugins: [buble(), terser()],
},
]