auto-image-converter 1.1.7 → 1.1.8

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/watcher.mjs +1 -1
  2. package/package.json +1 -1
package/bin/watcher.mjs CHANGED
@@ -21,7 +21,7 @@ const watchPath = config.dir
21
21
  console.log(`👀 Watching for image changes on: ${watchPath}`);
22
22
 
23
23
  chokidar
24
- .watch(watchPath, { ignoreInitial: false })
24
+ .watch(watchPath, { ignoreInitial: true })
25
25
  .on("add", async (filePath) => {
26
26
  console.log(`➕ New image: ${filePath}`);
27
27
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auto-image-converter",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "auto-convert-images": "./bin/index.js",