-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
85 lines (79 loc) · 1.75 KB
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import babel from 'rollup-plugin-babel';
import cleanup from 'rollup-plugin-cleanup';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import uglify from 'rollup-plugin-uglify';
import serve from 'rollup-plugin-serve';
import progress from 'rollup-plugin-progress';
const pkg = require('./package.json');
const production = process.env.BUILD === 'production';
const cjs = process.env.BUILD === 'cjs';
const file = production ? `index.js` : (cjs ? `main.js` : `index.debug.js`);
const format = cjs ? 'cjs' : 'umd';
const globals = {
'@alipay/tiny.js': 'Tiny',
};
const external = Object.keys(globals);
const banner = `/*!
* Name: ${pkg.name}
* Description: ${pkg.description}
* Author: ${pkg.author}
* Version: v${pkg.version}
*/
${cjs ? `
// AppX: adapter for the alibaba mini program
// if (typeof $global !== 'undefined') {
// window = $global.window
// navigator = window.navigator
// Tiny = $global.Tiny
// }
` : ''}`;
const config = {
input: 'src/index.js',
output: {
file,
format,
name: 'Tiny.Transformable',
banner,
globals,
amd: {
id: pkg.name,
},
},
external,
plugins: [
resolve(),
commonjs(),
babel({
babelrc: false,
include: ['./src/**/*.js'],
presets: [
[
'env', {
modules: false,
},
],
'stage-0',
],
plugins: [
'external-helpers',
],
comments: false,
}),
cleanup(),
progress(),
(production && uglify({
output: {
comments: /^!/,
},
})),
],
};
if (process.argv.includes('--watch')) {
config.plugins.push(serve({
contentBase: '',
host: 'localhost',
port: 8080,
}));
}
export default config;