forked from andreasbm/web-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup-plugin-livereload.ts
106 lines (91 loc) · 2.7 KB
/
rollup-plugin-livereload.ts
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
import colors from "colors";
import { createServer } from "livereload";
import { resolve } from "path";
export interface IRollupPLuginLivereloadConfig {
watch: string;
port: number;
verbose: boolean;
}
/**
* #########################################
* Parts of this code is heavily inspired by https://github.com/thgh/rollup-plugin-livereload.
* The license has therefore been included.
* #########################################
*/
/**
* Default configuration for the livereload plugin.
*/
const defaultConfig: IRollupPLuginLivereloadConfig = {
watch: "dist",
port: 35729,
verbose: true
};
/**
* Returns the livereload html.
*/
function livereloadHtml(port: number): string {
return `/* Inserted by the Livereload plugin */
if (typeof document !== 'undefined') {
(function(doc, id) {
/* Ensure that a script does not exist in the doc yet */
var $container = doc.head || doc.body;
if ($container == null || $container.querySelector("#" + id) != null) {
return;
}
/* Create script that takes care of reloading each time a watched file changes */
var $script = doc.createElement("script");
$script.async = true;
$script.id = id;
$script.src = "//" + (location.host || "localhost").split(":")[0] + ":${port}/livereload.js?snipver=1";
/* Inject the script as the first one */
$container.insertBefore($script, $container.firstChild);
})(document, "rollup-plugin-livereload");
}`;
}
/**
* Subscribes the server to terminate when required.
* @param server
*/
function attachTerminationListeners(server: any) {
// Hook up listeners that kills the server if the process is terminated for some reason
const terminationSignals = ["SIGINT", "SIGTERM", "SIGQUIT"];
for (const signal of terminationSignals) {
process.on(<any>signal, () => killServer(server));
}
// Rethrow the error
server.on("error", (err: Error) => {
server.close();
throw err;
});
}
/**
* Tears down the server.
* @param server
*/
function killServer(server: any) {
server.close();
process.exit();
}
/**
* A Rollup plugin that live reload files as they changes.
* @param config
* @returns {*}
*/
export function livereload(config: Partial<IRollupPLuginLivereloadConfig> = {}) {
const { watch, port, verbose } = { ...defaultConfig, ...config };
// Start watching the files
const server = createServer({ watch, port, verbose });
const paths = Array.isArray(watch) ? watch : [watch];
// @ts-ignore // TODO
server.watch(paths.map((p: string) => resolve(process.cwd(), p)));
attachTerminationListeners(server);
return {
name: "livereload",
banner: () => livereloadHtml(port),
generateBundle: () => {
if (verbose) {
console.log(colors.green(`[livereload] - Enabled.`));
}
}
};
}