exiftool-vendored.exe 13.34.0 → 13.35.0

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/README.md +2 -2
  2. package/package.json +6 -5
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Provides the win32 distribution of [ExifTool](http://www.sno.phy.queensu.ca/~phil/exiftool/) to [node](https://nodejs.org/en/).
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/exiftool-vendored.exe.svg)](https://www.npmjs.com/package/exiftool-vendored.exe)
6
- [![Node.js CI](https://github.com/photostructure/exiftool-vendored.exe/actions/workflows/node.js.yml/badge.svg?branch=main)](https://github.com/photostructure/exiftool-vendored.exe/actions/workflows/node.js.yml)
6
+ [![Build & Release](https://github.com/photostructure/exiftool-vendored.exe/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/photostructure/exiftool-vendored.exe/actions/workflows/build.yml)
7
7
 
8
8
  ## Usage
9
9
 
@@ -21,4 +21,4 @@ here.](https://oliverbetz.de/pages/Artikel/ExifTool-for-Windows)
21
21
 
22
22
  ## Versioning
23
23
 
24
- This package exposes the version of ExifTool it vendors, and adds a patch number, if necessary, to follow SemVer.
24
+ This package exposes the version of ExifTool it vendors, and adds a patch number, if necessary, to follow SemVer.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exiftool-vendored.exe",
3
- "version": "13.34.0",
3
+ "version": "13.35.0",
4
4
  "description": "Vendored win32 ExifTool for Node.js",
5
5
  "main": "./index.js",
6
6
  "homepage": "https://github.com/photostructure/exiftool-vendored.exe#readme",
@@ -25,10 +25,10 @@
25
25
  "author": "Matthew McEachen <matthew-exiftoolvendored@mceachen.org>",
26
26
  "license": "MIT",
27
27
  "scripts": {
28
- "prettier": "prettier --write *.js test/*.js",
28
+ "prettier": "prettier --write .",
29
29
  "test": "mocha",
30
- "update": "run-p update:*",
31
- "update:deps": "ncu -u",
30
+ "update": "run-s update:*",
31
+ "update:deps": "npm-check-updates --upgrade --install always",
32
32
  "update:exiftool": "node update-exiftool.js",
33
33
  "check-version": "node check-version.js",
34
34
  "install:pinact": "go install github.com/suzuki-shunsuke/pinact/cmd/pinact@latest",
@@ -45,7 +45,8 @@
45
45
  "release": true
46
46
  },
47
47
  "npm": {
48
- "publish": true
48
+ "publish": true,
49
+ "skipChecks": true
49
50
  }
50
51
  },
51
52
  "devDependencies": {