-
Notifications
You must be signed in to change notification settings - Fork 11
/
zotero-plugin.config.ts
56 lines (53 loc) · 1.5 KB
/
zotero-plugin.config.ts
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
import { defineConfig } from "zotero-plugin-scaffold";
import pkg from "./package.json";
import { copyFileSync } from "node:fs";
export default defineConfig({
source: ["src", "addon"],
dist: "build",
name: pkg.config.addonName,
id: pkg.config.addonID,
namespace: pkg.config.addonRef,
updateURL: `https://github.com/{{owner}}/{{repo}}/releases/download/release/${
pkg.version.includes("-") ? "update-beta.json" : "update.json"
}`,
xpiDownloadLink:
"https://github.com/{{owner}}/{{repo}}/releases/download/v{{version}}/{{xpiName}}.xpi",
build: {
assets: ["addon/**/*.*"],
define: {
...pkg.config,
author: pkg.author,
description: pkg.description,
homepage: pkg.homepage,
buildVersion: pkg.version,
buildTime: "{{buildTime}}",
},
esbuildOptions: [
{
entryPoints: ["src/index.ts"],
define: {
__env__: `"${process.env.NODE_ENV}"`,
},
bundle: true,
target: "firefox115",
outfile: `build/addon/chrome/content/scripts/index.js`,
},
],
makeUpdateJson: {
updates: [
{
version: "0.1.06",
update_link:
"https://github.com/redleafnew/delitemwithatt/releases/download/0.1.06/delitemwithatt.xpi",
applications: {
gecko: {
strict_min_version: "60.0",
},
},
},
],
},
},
// If you need to see a more detailed log, uncomment the following line:
// logLevel: "trace",
});