-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: validate git version after install
ISSUES CLOSED: #3
- Loading branch information
Showing
3 changed files
with
68 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
const validateGitVersion = require('validate-git-version') | ||
const { blue, yellow } = require('chalk') | ||
const { name: moduleName } = require('../package') | ||
|
||
const minimumVersion = '2.6.0' | ||
|
||
validateGitVersion( | ||
`^${minimumVersion}`, | ||
(currentVersion) => console.log(yellow( | ||
`⚠️ Git version ${currentVersion} is not compatible with ${moduleName}. Please upgrade to git ${minimumVersion} or later.` | ||
)), | ||
(currentVersion) => console.log(blue( | ||
`🎉 Git version ${currentVersion} is compatible with ${moduleName}.` | ||
)) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters