-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathrollup.config.js
50 lines (46 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
import typescript from "@rollup/plugin-typescript";
import { nodeResolve } from "@rollup/plugin-node-resolve";
import rollupJson from "@rollup/plugin-json";
import commonjs from "@rollup/plugin-commonjs";
import execute from "rollup-plugin-execute";
import path from "path";
const isProd = process.env.BUILD === "production";
const currentDir = path.dirname(__filename);
const banner = `/*
THIS IS A GENERATED/BUNDLED FILE BY ROLLUP
if you want to view the source visit the plugins github repository
*/
`;
export default {
input: "src/main.ts",
output: {
dir: "obsidian_local_images_plus_latest",
sourcemap: "inline",
sourcemapExcludeSources: isProd,
format: "cjs",
exports: "default",
banner,
},
external: ["obsidian"],
plugins: [
execute([
` mkdir -p ${currentDir}/obsidian_local_images_plus_latest`,
` cp -u ${currentDir}/manifest.json ${currentDir}/obsidian_local_images_plus_latest/manifest.json`,
` cp -u ${currentDir}/styles.css ${currentDir}/obsidian_local_images_plus_latest/styles.css`,
]),
typescript(),
nodeResolve({ browser: true }),
rollupJson(),
commonjs(),
],
onwarn(warning, warn) {
// workaround to prevent rollup build error
if (
warning.code === "EVAL" &&
/.*\/node_modules\/file-type\/.*/.test(warning.loc.file)
) {
return;
}
warn(warning);
},
};