generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrollup.config.js
111 lines (103 loc) · 2.56 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import dotenv from 'dotenv';
import typescript from '@rollup/plugin-typescript';
import {nodeResolve} from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import copy from 'rollup-plugin-copy';
dotenv.config();
const isProd = (process.env.BUILD === 'production');
const banner =
`/*
THIS IS A GENERATED/BUNDLED FILE BY ROLLUP
if you want to view the source visit the plugins github repository
*/
`;
const output = [ {
input: 'main.ts',
output: {
dir: '.',
sourcemap: 'inline',
sourcemapExcludeSources: isProd,
format: 'cjs',
exports: 'default',
banner,
},
external: ['obsidian'],
plugins: [
typescript(),
nodeResolve({browser: true}),
commonjs(),
]
}];
if (process.env.macOS_Destination) { // Thanks, @mgmeyers!
output.push({
input: "./main.ts",
output: {
dir: process.env.macOS_Destination,
sourcemap: "inline",
format: "cjs",
exports: "default",
banner,
},
external: ["obsidian"],
plugins: [
typescript(),
nodeResolve({ browser: true }),
commonjs(),
copy({
targets: [
{ src: "./manifest.json", dest: process.env.macOS_Destination },
{ src: "./styles.css", dest: process.env.macOS_Destination },
],
}),
],
});
}
if (process.env.iPadOS_Destination) { // Thanks, @mgmeyers!
output.push({
input: "./main.ts",
output: {
dir: process.env.iPadOS_Destination,
sourcemap: "inline",
format: "cjs",
exports: "default",
banner,
},
external: ["obsidian"],
plugins: [
typescript(),
nodeResolve({ browser: true }),
commonjs(),
copy({
targets: [
{ src: "./manifest.json", dest: process.env.iPadOS_Destination },
{ src: "./styles.css", dest: process.env.iPadOS_Destination },
],
}),
],
});
}
if (process.env.iOS_Destination) { // Thanks, @mgmeyers!
output.push({
input: "./main.ts",
output: {
dir: process.env.iOS_Destination,
sourcemap: "inline",
format: "cjs",
exports: "default",
banner,
},
external: ["obsidian"],
plugins: [
typescript(),
nodeResolve({ browser: true }),
commonjs(),
copy({
targets: [
{ src: "./manifest.json", dest: process.env.iOS_Destination },
{ src: "./styles.css", dest: process.env.iOS_Destination },
],
}),
],
});
}
export default output;