Skip to content

Commit e2d27df

Browse files
authored
Merge pull request #23 from pact-foundation/chore/upgrade-to-pact-ruby-standalone-2-4-16
fix: update standalone to 2.4.16
2 parents 9395150 + 4b789e4 commit e2d27df

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

script/ci/build-and-test.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ fi
2020
node --version
2121
npm --version
2222

23-
npm ci
23+
# our lock file may be out of sync post npm release, as it has not been updated post release
24+
# of the optional depedencies with the path to the npm packages. We should probably commit these
25+
# back after releasing the package
26+
npm ci || npm i
2427
# Update main package.json optional dependencies versions, with those created earlier
2528
make update_opt_deps
2629
# update lockfile post buildling updated opt deps

standalone/install.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import chalk = require('chalk');
22

33
// Get latest version from https://github.com/pact-foundation/pact-ruby-standalone/releases
4-
export const PACT_STANDALONE_VERSION = '2.4.15';
4+
export const PACT_STANDALONE_VERSION = '2.4.16';
55

66
function makeError(msg: string): Error {
77
return new Error(chalk.red(`Error while locating pact binary: ${msg}`));

0 commit comments

Comments
 (0)