-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
40 lines (36 loc) · 964 Bytes
/
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
import resolve from "rollup-plugin-node-resolve"
import commonjs from "rollup-plugin-commonjs"
import { uglify } from "rollup-plugin-uglify"
import html from '@rollup/plugin-html'
const cdn = '//cdn.jsdelivr.net/gh'
const username = 'saber2pr'
const repo = 'react'
const pages_branch = 'gh-pages'
const publicPath = process.env.NODE_ENV === 'production'
? `${cdn}/${username}/${repo}@${pages_branch}/`
: './'
const fileName = `bundle.${Date.now()}.js`
export default {
input: "./lib/__test__/Test.js",
output: {
file: `./build/${fileName}`,
format: "iife",
name: "react",
exports: "named"
},
watch: {
include: "lib/**"
},
plugins: [commonjs(), resolve(), uglify(), html({
template: () => `<!DOCTYPE html>
<html>
<head>
<title>@saber2pr/react</title>
</head>
<body>
<div id="root"></div>
<script src=${`${publicPath}${fileName}`}></script>
</body>
</html>`
})]
}