-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
52 lines (49 loc) · 1.41 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
import replace from "@rollup/plugin-replace";
import typescript from "rollup-plugin-typescript2";
import resolve from '@rollup/plugin-node-resolve';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import fs from 'fs';
const manifestStr = fs.readFileSync("manifest.json", "utf-8");
const manifest = JSON.parse(manifestStr);
const packageString = `const PLUGIN_VERSION = "${manifest.version}";`;
export default {
input: 'src/main.ts',
output: {
file: 'main.js',
format: 'cjs',
exports: 'auto'
},
external: ['obsidian', 'crypto-js'],
plugins: [
resolve(),
nodeResolve(),
typescript({
inlineSourceMap: true, // Ensure inline source map is generated
inlineSources: true, // Ensure inline sources are included
tsconfig: "tsconfig.json", // Specify the path to your tsconfig.json file
abortOnError: false // Continue bundling even if there are TypeScript errors
}),
{
name: 'debug-log',
// Add a console log before the replace plugin
buildStart() {
console.log('Starting Rollup build...');
}
},
replace({
preventAssignment: true,
values: {
// Replace the declaration of PLUGIN_VERSION directly
'declare const PLUGIN_VERSION: string;': packageString
}
}),
{
name: 'debug-log',
// Add a console log after the replace plugin
buildEnd() {
console.log('Rollup build completed.');
console.log(`packageString content: ${packageString}`)
}
}
]
};