@builderbot/provider-venom 1.3.2-alpha.1 → 1.3.3

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/dist/index.cjs +6 -5
  2. package/package.json +3 -3
package/dist/index.cjs CHANGED
@@ -12288,7 +12288,8 @@ function checkParentPathsSync (src, srcStat, dest, funcName) {
12288
12288
  }
12289
12289
 
12290
12290
  function areIdentical$2 (srcStat, destStat) {
12291
- return destStat.ino && destStat.dev && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
12291
+ // stat.dev can be 0n on windows when node version >= 22.x.x
12292
+ return destStat.ino !== undefined && destStat.dev !== undefined && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
12292
12293
  }
12293
12294
 
12294
12295
  // return true if dest is a subdir of src, otherwise false.
@@ -13170,16 +13171,16 @@ function writeFileSync (file, obj, options = {}) {
13170
13171
  return fs.writeFileSync(file, str, options)
13171
13172
  }
13172
13173
 
13173
- const jsonfile$1 = {
13174
+ // NOTE: do not change this export format; required for ESM compat
13175
+ // see https://github.com/jprichardson/node-jsonfile/pull/162 for details
13176
+ var jsonfile$1 = {
13174
13177
  readFile,
13175
13178
  readFileSync,
13176
13179
  writeFile,
13177
13180
  writeFileSync
13178
13181
  };
13179
13182
 
13180
- var jsonfile_1 = jsonfile$1;
13181
-
13182
- const jsonFile$1 = jsonfile_1;
13183
+ const jsonFile$1 = jsonfile$1;
13183
13184
 
13184
13185
  var jsonfile = {
13185
13186
  // jsonfile exports
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builderbot/provider-venom",
3
- "version": "1.3.2-alpha.1",
3
+ "version": "1.3.3",
4
4
  "description": "Now I’m the model of a modern major general / The venerated Virginian veteran whose men are all / Lining up, to put me up on a pedestal / Writin’ letters to relatives / Embellishin’ my elegance and eloquence / But the elephant is in the room / The truth is in ya face when ya hear the British cannons go / BOOM",
5
5
  "keywords": [],
6
6
  "author": "Leifer Mendez <leifer33@gmail.com>",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "homepage": "https://github.com/codigoencasa/bot-whatsapp#readme",
33
33
  "devDependencies": {
34
- "@builderbot/bot": "^1.3.2-alpha.1",
34
+ "@builderbot/bot": "1.3.2-y.0",
35
35
  "@jest/globals": "^29.7.0",
36
36
  "@rollup/plugin-commonjs": "^25.0.7",
37
37
  "@rollup/plugin-json": "^6.1.0",
@@ -60,5 +60,5 @@
60
60
  "sharp": "0.33.3",
61
61
  "venom-bot": "~5.1.0"
62
62
  },
63
- "gitHead": "6c5cdc5619203336ab3b56025cd9081474bc5a3e"
63
+ "gitHead": "8c3712b1fa4ffdaf7999b6f64a566cde74d67d69"
64
64
  }