aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/rollup.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'library/cropperjs/rollup.config.js')
-rw-r--r--library/cropperjs/rollup.config.js50
1 files changed, 50 insertions, 0 deletions
diff --git a/library/cropperjs/rollup.config.js b/library/cropperjs/rollup.config.js
new file mode 100644
index 000000000..b792a79a7
--- /dev/null
+++ b/library/cropperjs/rollup.config.js
@@ -0,0 +1,50 @@
+const babel = require('rollup-plugin-babel');
+const pkg = require('./package');
+
+const now = new Date();
+const banner = `/*!
+ * Cropper.js v${pkg.version}
+ * https://github.com/${pkg.repository}
+ *
+ * Copyright (c) 2015-${now.getFullYear()} ${pkg.author.name}
+ * Released under the ${pkg.license} license
+ *
+ * Date: ${now.toISOString()}
+ */
+`;
+
+module.exports = {
+ // Export banner for PostCSS
+ banner,
+ input: 'src/js/cropper.js',
+ output: [
+ {
+ banner,
+ file: 'dist/cropper.js',
+ format: 'umd',
+ name: 'Cropper',
+ },
+ {
+ banner,
+ file: 'dist/cropper.common.js',
+ format: 'cjs',
+ },
+ {
+ banner,
+ file: 'dist/cropper.esm.js',
+ format: 'es',
+ },
+ {
+ banner,
+ file: 'docs/js/cropper.js',
+ format: 'umd',
+ name: 'Cropper',
+ },
+ ],
+ plugins: [
+ babel({
+ exclude: 'node_modules/**',
+ plugins: ['external-helpers'],
+ }),
+ ],
+};