zotero-plugin 6.4.3 → 6.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/fetch-log.mjs +1 -1
- package/debug-log.js +1 -1
- package/package.json +4 -4
package/bin/fetch-log.mjs
CHANGED
package/debug-log.js
CHANGED
|
@@ -64,7 +64,7 @@ class Bundler {
|
|
|
64
64
|
id(remote) {
|
|
65
65
|
return `${this.key}-${remote}${this.#refs ? '.refs' : ''}${this.#pubkey ? '.enc' : ''}`;
|
|
66
66
|
}
|
|
67
|
-
formData(expire =
|
|
67
|
+
formData(expire = 30) {
|
|
68
68
|
const blob = new Blob([this.zip], { type: 'application/zip' });
|
|
69
69
|
const formData = new FormData();
|
|
70
70
|
formData.append('file', blob, this.name);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zotero-plugin",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.5",
|
|
4
4
|
"description": "Zotero plugin builder",
|
|
5
5
|
"homepage": "https://github.com/retorquere/zotero-plugin/wiki",
|
|
6
6
|
"bin": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"preversion": "npm test",
|
|
21
|
-
"postversion": "git
|
|
21
|
+
"postversion": "git push --follow-tags",
|
|
22
22
|
"test": "dprint fmt *.ts */*.ts && dprint check *.ts */*.ts && npm run build",
|
|
23
23
|
"build": "tsc && ./bundle.mjs && chmod +x bin/*.mjs",
|
|
24
24
|
"postbuild": "rm bin/*.js bin/*.d.ts",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@napi-rs/keyring": "^1.2.0",
|
|
34
34
|
"@octokit/rest": "^22.0.0",
|
|
35
35
|
"@rgrove/parse-xml": "^4.2.0",
|
|
36
|
-
"@types/node": "^24.
|
|
36
|
+
"@types/node": "^24.8.0",
|
|
37
37
|
"@xmldom/xmldom": "^0.9.8",
|
|
38
38
|
"ajv": "^8.17.1",
|
|
39
39
|
"ajv-keywords": "^5.1.0",
|
|
@@ -115,6 +115,6 @@
|
|
|
115
115
|
"devDependencies": {
|
|
116
116
|
"@openpgp/web-stream-tools": "^0.2.0",
|
|
117
117
|
"dprint": "^0.50.2",
|
|
118
|
-
"esbuild": "^0.25.
|
|
118
|
+
"esbuild": "^0.25.11"
|
|
119
119
|
}
|
|
120
120
|
}
|