Bump simple-git from 1.132.0 to 2.46.0 (#39931)

* Bump simple-git from 1.132.0 to 2.46.0

Bumps [simple-git](https://github.com/steveukx/git-js) from 1.132.0 to 2.46.0.
- [Release notes](https://github.com/steveukx/git-js/releases)
- [Changelog](https://github.com/steveukx/git-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/steveukx/git-js/compare/v1.132.0...v2.46.0)

---
updated-dependencies:
- dependency-name: simple-git
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* simple-git/promise is deprecated

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com>
This commit is contained in:
dependabot[bot]
2021-10-04 14:30:02 +02:00
committed by GitHub
co-authored by dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Zoltán Bedi
parent 47a9613b3e
commit 5219c72a6c
3 changed files with 21 additions and 7 deletions
+1 -1
View File
@@ -97,7 +97,7 @@
"sass": "1.27.0",
"sass-loader": "8.0.2",
"semver": "^7.1.3",
"simple-git": "^1.132.0",
"simple-git": "^2.46.0",
"style-loader": "1.1.3",
"terser-webpack-plugin": "2.3.7",
"ts-jest": "26.4.4",
@@ -4,7 +4,7 @@ import { promises as fs, readFileSync } from 'fs';
import { prompt } from 'inquirer';
import { kebabCase } from 'lodash';
import path from 'path';
import gitPromise from 'simple-git/promise';
import gitPromise from 'simple-git';
import { promptConfirm, promptInput } from '../../utils/prompt';
import { rmdir } from '../../utils/rmdir';
import { useSpinner } from '../../utils/useSpinner';