exiftool-vendored.pl 13.34.0 → 13.34.1
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/README.md +2 -2
- package/index.js +2 -2
- package/package.json +9 -7
- package/bin/windows_exiftool.txt +0 -2941
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ files are omitted, as they almost double the size of the package and more than
|
|
|
6
6
|
triple the number of files in the package.
|
|
7
7
|
|
|
8
8
|
[](https://www.npmjs.com/package/exiftool-vendored.pl)
|
|
9
|
-
[](https://github.com/photostructure/exiftool-vendored.pl/actions/workflows/build.yml)
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
@@ -23,4 +23,4 @@ number, if necessary, to follow SemVer.
|
|
|
23
23
|
1. The `check-updates` workflow automatically detects new ExifTool versions and creates PRs
|
|
24
24
|
2. Update PRs use a `-pre` suffix during development (e.g., `13.26.0-pre`)
|
|
25
25
|
3. The `release` workflow removes the `-pre` suffix when publishing to npm
|
|
26
|
-
4. Final npm package versions match the vendored ExifTool version exactly
|
|
26
|
+
4. Final npm package versions match the vendored ExifTool version exactly
|
package/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const path = require(
|
|
1
|
+
const path = require("path");
|
|
2
2
|
|
|
3
|
-
module.exports = path.join(__dirname,
|
|
3
|
+
module.exports = path.join(__dirname, "bin", "exiftool");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored.pl",
|
|
3
|
-
"version": "13.34.
|
|
3
|
+
"version": "13.34.1",
|
|
4
4
|
"description": "Vendored perl ExifTool for Node.js",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"homepage": "https://github.com/photostructure/exiftool-vendored.pl#readme",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "git
|
|
12
|
+
"url": "git+https://github.com/photostructure/exiftool-vendored.pl.git"
|
|
13
13
|
},
|
|
14
14
|
"bin": {
|
|
15
15
|
"exiftool": "./bin/exiftool"
|
|
@@ -25,19 +25,20 @@
|
|
|
25
25
|
"ExifTool",
|
|
26
26
|
"EXIF"
|
|
27
27
|
],
|
|
28
|
-
"author": "Matthew McEachen <
|
|
28
|
+
"author": "Matthew McEachen <exiftool-vendored-pl@photostructure.com>",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"scripts": {
|
|
31
|
-
"prettier": "prettier --write test/*.js",
|
|
32
31
|
"test": "mocha",
|
|
32
|
+
"fmt": "prettier --write .",
|
|
33
33
|
"update": "run-p update:*",
|
|
34
|
-
"update:deps": "
|
|
34
|
+
"update:deps": "npm-check-updates --upgrade --install always",
|
|
35
35
|
"update:exiftool": "bash -c ./update-exiftool.sh",
|
|
36
36
|
"check-version": "node check-version.js",
|
|
37
37
|
"install:pinact": "go install github.com/suzuki-shunsuke/pinact/cmd/pinact@latest",
|
|
38
38
|
"update:actions": "pinact run -u",
|
|
39
39
|
"release": "release-it"
|
|
40
40
|
},
|
|
41
|
+
"# release-it.npm.skipChecks": "Required for OIDC Trusted Publishing - bypasses npm auth checks since OIDC handles authentication automatically. See: https://github.com/release-it/release-it/issues/1244 and https://docs.npmjs.com/trusted-publishers#supported-cicd-providers",
|
|
41
42
|
"release-it": {
|
|
42
43
|
"git": {
|
|
43
44
|
"requireBranch": "main",
|
|
@@ -48,14 +49,15 @@
|
|
|
48
49
|
"release": true
|
|
49
50
|
},
|
|
50
51
|
"npm": {
|
|
51
|
-
"publish": true
|
|
52
|
+
"publish": true,
|
|
53
|
+
"skipChecks": true
|
|
52
54
|
}
|
|
53
55
|
},
|
|
54
56
|
"devDependencies": {
|
|
55
57
|
"mocha": "^11.7.1",
|
|
56
58
|
"npm-run-all": "4.1.5",
|
|
57
59
|
"prettier": "^3.6.2",
|
|
58
|
-
"release-it": "^19.0.
|
|
60
|
+
"release-it": "^19.0.4",
|
|
59
61
|
"xml2js": "^0.6.2"
|
|
60
62
|
}
|
|
61
63
|
}
|