-
Notifications
You must be signed in to change notification settings - Fork 6
/
rollup.config.js
124 lines (112 loc) · 2.89 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import terser from '@rollup/plugin-terser'
import progress from 'rollup-plugin-progress';
import pkg from './package.json' assert {type: "json"};
import fs from 'node:fs'
const production = process.env.NODE_ENV === 'production',
sourcemap = !production
const banner = `
/*!
* Module For Query (m4q, https://metroui.org.ua)
* Copyright 2012-${new Date().getFullYear()} by Serhii Pimenov
* Licensed under MIT
!*/
`
const source_files = [
'src/modules/mode.js',
'src/modules/helpers.js',
'src/modules/core.js',
'src/modules/interval.js',
'src/modules/contains.js',
'src/modules/script.js',
'src/modules/prop.js',
'src/modules/each.js',
'src/modules/data.js',
'src/modules/utils.js',
'src/modules/events.js',
'src/modules/ajax.js',
'src/modules/css.js',
'src/modules/classes.js',
'src/modules/parser.js',
'src/modules/size.js',
'src/modules/position.js',
'src/modules/attr.js',
'src/modules/proxy.js',
'src/modules/manipulation.js',
'src/modules/animation.js',
'src/modules/visibility.js',
'src/modules/effects.js',
'src/modules/init.js',
];
let lib = ``, index = ``
;[...source_files, 'src/modules/populate.js'].forEach(file => {
lib += fs.readFileSync(file, 'utf8').toString() + "\n\n";
})
;[...source_files, 'src/modules/export.js'].forEach(file => {
index += fs.readFileSync(file, 'utf8').toString() + "\n\n";
})
lib = lib.replace('@@VERSION', pkg.version)
lib = lib.replace('@@BUILD_TIME', new Date().toLocaleString())
index = index.replace('@@VERSION', pkg.version)
index = index.replace('@@BUILD_TIME', new Date().toLocaleString())
fs.writeFileSync('src/lib.js', lib, {encoding: 'utf8', flag: 'w+'});
fs.writeFileSync('src/index.js', index, {encoding: 'utf8', flag: 'w+'});
const plugins = [
progress({clearLine: true})
]
const watch = {
clearScreen: false,
}
export default [
{
input: 'src/lib.js',
watch,
plugins,
output: {
file: 'lib/m4q.js',
format: 'iife',
name: 'm4q',
sourcemap: false,
banner,
plugins: [
]
}
},
{
input: 'src/lib.js',
watch,
plugins,
output: {
file: 'lib/m4q.min.js',
format: 'iife',
name: 'm4q',
sourcemap,
banner,
plugins: [
terser({
keep_classnames: true,
keep_fnames: true,
})
]
}
},
{
input: 'src/index.js',
watch,
plugins,
output: {
file: 'dist/m4q.cjs.js',
format: 'cjs',
banner,
}
},
{
input: 'src/index.js',
watch,
plugins,
output: {
file: 'dist/m4q.esm.js',
format: 'esm',
banner,
}
},
]