forked from qunitjs/qunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
63 lines (57 loc) · 1.52 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
/* eslint-env node */
const fs = require( "fs" );
const { babel } = require( "@rollup/plugin-babel" );
const { nodeResolve } = require( "@rollup/plugin-node-resolve" );
const commonjs = require( "@rollup/plugin-commonjs" );
const replace = require( "@rollup/plugin-replace" );
const { replacements } = require( "./build/dist-replace.js" );
const isCoverage = process.env.BUILD_TARGET === "coverage";
module.exports = {
input: "src/qunit.js",
output: {
file: "qunit/qunit.js",
sourcemap: isCoverage,
format: "iife",
exports: "none",
// eslint-disable-next-line no-multi-str
banner: "/*!\n\
* QUnit @VERSION\n\
* https://qunitjs.com/\n\
*\n\
* Copyright OpenJS Foundation and other contributors\n\
* Released under the MIT license\n\
* https://jquery.org/license\n\
*/",
intro: function() {
// Define the (partial) ES6 Map polyfill for "fuzzysort".
// Per https://github.com/qunitjs/qunit/issues/1508:
// 1. Must not leak as global variable, since it's not full Map implementation.
// 2. Must be seen by fuzzysort as-is (e.g. not get renamed as normal
// variables in an imported file would be).
return fs.readFileSync(
__dirname + "/src/html-reporter/es6-map.js",
"utf8"
).toString().trim();
}
},
plugins: [
replace( {
preventAssignment: true,
delimiters: [ "", "" ],
...replacements
} ),
nodeResolve(),
commonjs(),
babel( {
babelHelpers: "bundled",
babelrc: false,
presets: [
[ "@babel/preset-env", {
targets: {
ie: 9
}
} ]
]
} )
]
};