Uh oh!
There was an error while loading. Please reload this page.
forked from docsifyjs/docsify
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
Latest commit
123 lines (116 loc) Β· 2.98 KB
/
Copy pathrollup.config.js
File metadata and controls
123 lines (116 loc) Β· 2.98 KB
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
importfsfrom'node:fs/promises';
importpathfrom'node:path';
import{babel}from'@rollup/plugin-babel';
importcommonjsfrom'@rollup/plugin-commonjs';
importcssfrom'rollup-plugin-import-css';
importreplacefrom'@rollup/plugin-replace';
importresolvefrom'@rollup/plugin-node-resolve';
importterserfrom'@rollup/plugin-terser';
import{glob}from'glob';
import{stripIndent}from'common-tags';
// Setup
// =============================================================================
// Docsify
constdocsifyConfig={
inputPath: 'src/core/index.js',
outputDir: 'dist',
outputName: 'docsify',
title: 'Docsify',
};
// Plugins
constpluginPaths=awaitglob(['src/plugins/*.js','src/plugins/*/index.js']);
constpluginConfigs=pluginPaths.map(pluginPath=>{
constdir=path.basename(path.dirname(pluginPath));// path/to/dir/file.js => dir
constname=path.basename(pluginPath,'.js');// path/to/dir/file.js => file
constoutputName=name==='index' ? dir : name;
return{
inputPath: pluginPath,
outputDir: 'dist/plugins',
outputName,
title: `Docsify Plugin: ${outputName}`,
};
});
// Rollup configurations
// =============================================================================
constcurrentYear=newDate().getFullYear();
const{ homepage, license, version }=JSON.parse(
awaitfs.readFile(path.join(import.meta.dirname,'package.json'),'utf8'),
);
constbaseConfig={
output: {
format: 'iife',
},
plugins: [
resolve(),
commonjs(),
css(),
replace({
preventAssignment: true,
values: {
__VERSION__: version,
},
}),
babel({
babelHelpers: 'bundled',
}),
],
watch: {
clearScreen: false,
},
};
constbundleConfigs=[];
// Generate rollup configurations
[docsifyConfig, ...pluginConfigs].forEach(bundleConfig=>{
const{ inputPath, outputDir, outputName, title }=bundleConfig;
// prettier-ignore
constbanner=stripIndent`
/*!
* ${title} v${version}
* ${homepage}
* (c) 2017-${currentYear}
* ${license} license
*/
`;
constminifiedConfig={
...baseConfig,
input: inputPath,
output: {
...baseConfig.output,
banner,
file: path.join(outputDir,`${outputName}.min.js`),
sourcemap: true,
},
plugins: [
...baseConfig.plugins,
terser({
output: {
comments: /^!/,
},
}),
],
};
constunminifiedConfig={
...baseConfig,
input: inputPath,
output: {
...baseConfig.output,
banner,
file: path.join(outputDir,`${outputName}.js`),
},
plugins: [
...baseConfig.plugins,
terser({
compress: false,
mangle: false,
output: {
beautify: true,
comments: /^!/,
},
}),
],
};
bundleConfigs.push(minifiedConfig,unminifiedConfig);
});
// Exports
// =============================================================================
exportdefault[...bundleConfigs];