Skip to content

Commit

Permalink
chore(deps): bump simple-git from 2.37.0 to 3.3.0 (#944)
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh committed Mar 18, 2022
1 parent 045ee8a commit a4123d5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
"semantic-release": "^18.0.1",
"semantic-release-monorepo": "^7.0.5",
"semver": "^7.3.5",
"simple-git": "^2.37.0",
"simple-git": "^3.3.0",
"source-map-support": "^0.5.20",
"strip-bom": "4.0.0",
"strip-json-comments": "^3.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/release/commit.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const git = require('simple-git/promise')(process.cwd())
const git = require('simple-git').default(process.cwd())
const { readJson, paths } = require('../utils')

const files = ['package.json', 'CHANGELOG.md']
Expand Down
2 changes: 1 addition & 1 deletion src/release/contributors.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const git = require('simple-git/promise')(process.cwd())
const git = require('simple-git').default(process.cwd())
const execa = require('execa')
const { paths, fromAegir } = require('../utils')

Expand Down
2 changes: 1 addition & 1 deletion src/release/push.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const git = require('simple-git/promise')(process.cwd())
const git = require('simple-git').default(process.cwd())
const execa = require('execa')

/**
Expand Down
2 changes: 1 addition & 1 deletion src/release/tag.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const git = require('simple-git/promise')(process.cwd())
const git = require('simple-git').default(process.cwd())

const { paths, readJson } = require('../utils')

Expand Down

0 comments on commit a4123d5

Please sign in to comment.