Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/assets/scss/bootstrap/js/tests/integration/rollup.bundle.js')
-rwxr-xr-xstatic/assets/scss/bootstrap/js/tests/integration/rollup.bundle.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/static/assets/scss/bootstrap/js/tests/integration/rollup.bundle.js b/static/assets/scss/bootstrap/js/tests/integration/rollup.bundle.js
new file mode 100755
index 0000000..783cc2b
--- /dev/null
+++ b/static/assets/scss/bootstrap/js/tests/integration/rollup.bundle.js
@@ -0,0 +1,20 @@
+/* eslint-env node */
+
+const resolve = require('rollup-plugin-node-resolve')
+const commonjs = require('rollup-plugin-commonjs')
+const babel = require('rollup-plugin-babel')
+
+module.exports = {
+ input: 'js/tests/integration/bundle.js',
+ output: {
+ file: 'js/coverage/bundle.js',
+ format: 'iife'
+ },
+ plugins: [
+ resolve(),
+ commonjs(),
+ babel({
+ exclude: 'node_modules/**'
+ })
+ ]
+}