File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 20
20
node --version
21
21
npm --version
22
22
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
24
27
# Update main package.json optional dependencies versions, with those created earlier
25
28
make update_opt_deps
26
29
# update lockfile post buildling updated opt deps
Original file line number Diff line number Diff line change 1
1
import chalk = require( 'chalk' ) ;
2
2
3
3
// 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 ' ;
5
5
6
6
function makeError ( msg : string ) : Error {
7
7
return new Error ( chalk . red ( `Error while locating pact binary: ${ msg } ` ) ) ;
You can’t perform that action at this time.
0 commit comments