zotero-plugin 1.4.2 → 1.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.
Files changed (2) hide show
  1. package/bin/release.js +1 -1
  2. package/package.json +12 -12
package/bin/release.js CHANGED
@@ -164,7 +164,7 @@ async function main() {
164
164
  else if (issues.size) { // only release builds tied to issues
165
165
  release = await getRelease('builds', true);
166
166
  for (const asset of release.data.assets || []) {
167
- if (asset.created_at < EXPIRE_BUILDS) {
167
+ if (asset.name.endsWith('.xpi') && asset.created_at < EXPIRE_BUILDS) {
168
168
  report(`deleting ${asset.name}`);
169
169
  // TODO: double asset.id until https://github.com/octokit/rest.js/issues/933 is fixed
170
170
  if (!dryRun)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zotero-plugin",
3
- "version": "1.4.2",
3
+ "version": "1.4.5",
4
4
  "description": "Zotero plugin builder",
5
5
  "homepage": "https://github.com/retorquere/zotero-plugin/wiki",
6
6
  "bin": {
@@ -29,35 +29,35 @@
29
29
  "dependencies": {
30
30
  "@octokit/rest": "^18.12.0",
31
31
  "@rgrove/parse-xml": "^3.0.0",
32
- "@types/node": "^17.0.31",
33
- "@typescript-eslint/eslint-plugin": "^5.23.0",
34
- "@typescript-eslint/parser": "^5.23.0",
32
+ "@types/node": "^18.0.0",
33
+ "@typescript-eslint/eslint-plugin": "^5.28.0",
34
+ "@typescript-eslint/parser": "^5.28.0",
35
35
  "@xmldom/xmldom": "^0.8.2",
36
36
  "ajv": "^8.11.0",
37
37
  "ajv-keywords": "^5.1.0",
38
38
  "archiver": "^5.3.1",
39
39
  "clp": "^4.0.12",
40
40
  "current-git-branch": "^1.1.0",
41
- "dotenv": "^16.0.0",
42
- "ejs": "^3.1.7",
43
- "eslint": "^8.15.0",
41
+ "dotenv": "^16.0.1",
42
+ "ejs": "^3.1.8",
43
+ "eslint": "^8.17.0",
44
44
  "eslint-plugin-import": "^2.26.0",
45
45
  "eslint-plugin-prefer-arrow": "^1.2.3",
46
- "glob": "^8.0.1",
46
+ "glob": "^8.0.3",
47
47
  "jsesc": "^3.0.2",
48
- "jszip": "^3.9.1",
48
+ "jszip": "^3.10.0",
49
49
  "lodash": "^4.17.21",
50
50
  "moment": "^2.29.3",
51
- "peggy": "^1.2.0",
51
+ "peggy": "^2.0.1",
52
52
  "properties-reader": "^2.2.0",
53
53
  "pug": "^3.0.2",
54
54
  "rimraf": "^3.0.2",
55
55
  "shell-quote": "^1.7.3",
56
56
  "shelljs": "^0.8.5",
57
57
  "string-to-arraybuffer": "^1.0.2",
58
- "ts-node": "^10.7.0",
58
+ "ts-node": "^10.8.1",
59
59
  "tslib": "^2.4.0",
60
- "typescript": "^4.6.4",
60
+ "typescript": "^4.7.4",
61
61
  "uri-templates": "^0.2.0",
62
62
  "xml-parser": "^1.2.1",
63
63
  "xpath": "^0.0.32"