@pact-foundation/pact-core 13.4.1-beta.7 → 13.4.1-beta.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.
package/build/Makefile CHANGED
@@ -337,7 +337,7 @@ endif
337
337
 
338
338
  quiet_cmd_regen_makefile = ACTION Regenerating $@
339
339
  cmd_regen_makefile = cd $(srcdir); /Users/matthewfellows/.nvm/versions/node/v16.9.1/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/Users/matthewfellows/Library/Caches/node-gyp/16.9.1" "-Dnode_gyp_dir=/Users/matthewfellows/.nvm/versions/node/v16.9.1/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/Users/matthewfellows/Library/Caches/node-gyp/16.9.1/<(target_arch)/node.lib" "-Dmodule_root_dir=/Users/matthewfellows/development/public/pact-js-core" "-Dnode_engine=v8" "--depth=." "-Goutput_dir=." "--generator-output=build" -I/Users/matthewfellows/development/public/pact-js-core/build/config.gypi -I/Users/matthewfellows/.nvm/versions/node/v16.9.1/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/Users/matthewfellows/Library/Caches/node-gyp/16.9.1/include/node/common.gypi "--toplevel-dir=." binding.gyp
340
- Makefile: $(srcdir)/build/config.gypi $(srcdir)/../../../Library/Caches/node-gyp/16.9.1/include/node/common.gypi $(srcdir)/../../../.nvm/versions/node/v16.9.1/lib/node_modules/npm/node_modules/node-gyp/addon.gypi $(srcdir)/binding.gyp
340
+ Makefile: $(srcdir)/binding.gyp $(srcdir)/build/config.gypi $(srcdir)/../../../Library/Caches/node-gyp/16.9.1/include/node/common.gypi $(srcdir)/../../../.nvm/versions/node/v16.9.1/lib/node_modules/npm/node_modules/node-gyp/addon.gypi
341
341
  $(call do_cmd,regen_makefile)
342
342
 
343
343
  # "all" is a concatenation of the "all" targets from all the included
@@ -507,7 +507,7 @@ Napi::Value PactffiGivenWithParam(const Napi::CallbackInfo& info) {
507
507
  InteractionHandle interaction = info[0].As<Napi::Number>().Uint32Value();
508
508
  std::string description = info[1].As<Napi::String>().Utf8Value();
509
509
  std::string name = info[2].As<Napi::String>().Utf8Value();
510
- std::string value = info[4].As<Napi::String>().Utf8Value();
510
+ std::string value = info[3].As<Napi::String>().Utf8Value();
511
511
 
512
512
  bool res = pactffi_given_with_param(interaction, description.c_str(), name.c_str(), value.c_str());
513
513
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pact-foundation/pact-core",
3
- "version": "13.4.1-beta.7",
3
+ "version": "13.4.1-beta.8",
4
4
  "description": "Core of @pact-foundation/pact. You almost certainly don't want to depend on this directly.",
5
5
  "main": "src/index.js",
6
6
  "homepage": "https://github.com/pact-foundation/pact-js-core#readme",