-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathrollup.config.js
90 lines (87 loc) · 2.43 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
import typescript from '@rollup/plugin-typescript';
import {nodeResolve} from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
import commonjs from '@rollup/plugin-commonjs';
import copy from 'rollup-plugin-copy'
import fs from 'fs';
import folderZipString from './rollup-folder-zip-string';
import nodePolyfills from 'rollup-plugin-polyfill-node';
import analyze from 'rollup-plugin-analyzer';
import { terser } from "rollup-plugin-terser";
import replace from "@rollup/plugin-replace";
const banner =
`/*
@preserve
THIS IS A GENERATED/BUNDLED FILE BY ROLLUP
if you want to view the source visit the plugins github repository
*/
`;
const vault_plugin_dir = fs.existsSync('./.vault_plugin_dir') ?
fs.readFileSync('./.vault_plugin_dir').toString() :
'.';
export default {
input: 'src/main.tsx',
output: {
dir: vault_plugin_dir,
sourcemap: 'inline',
sourcemapExcludeSources: true,
format: 'cjs',
exports: 'default',
banner,
},
external: ['obsidian',
"codemirror",
"@codemirror/autocomplete",
"@codemirror/closebrackets",
"@codemirror/collab",
"@codemirror/commands",
"@codemirror/comment",
"@codemirror/fold",
"@codemirror/gutter",
"@codemirror/highlight",
"@codemirror/history",
"@codemirror/language",
"@codemirror/lint",
"@codemirror/matchbrackets",
"@codemirror/panel",
"@codemirror/rangeset",
"@codemirror/rectangular-selection",
"@codemirror/search",
"@codemirror/state",
"@codemirror/stream-parser",
"@codemirror/text",
"@codemirror/tooltip",
"@codemirror/view",
"@lezer/common",
"@lezer/lr"],
plugins: [
typescript(),
json(),
nodeResolve({browser: true}),
replace({
'process.env.NODE_ENV': JSON.stringify('production'),
preventAssignment: true
}),
commonjs(),
nodePolyfills(),
...(vault_plugin_dir != '.' ? [copy({
targets: [
{ src: 'manifest.json', dest: vault_plugin_dir }
]
})] : []),
terser({
output: {
comments: function (node, comment) {
var text = comment.value;
var type = comment.type;
if (type == "comment2") {
// multiline comment
return /@preserve|@license|@cc_on/i.test(text);
}
},
},
}),
folderZipString(),
analyze({summaryOnly: true})
]
};