@ckeditor/ckeditor5-dev-utils
Advanced tools
Comparing version 2.2.0 to 2.2.1
@@ -128,3 +128,3 @@ /** | ||
getStatus( repositoryPath ) { | ||
return tools.shExec( `cd ${ repositoryPath } && git status --porcelain -sb`, false ); | ||
return tools.shExec( `cd ${ repositoryPath } && git status --porcelain -sb`, { verbosity: 'error' } ); | ||
}, | ||
@@ -131,0 +131,0 @@ |
{ | ||
"name": "@ckeditor/ckeditor5-dev-utils", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"description": "Utils for CKEditor 5 dev code (such as Gulp tasks).", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -224,2 +224,3 @@ /** | ||
expect( shExecStub.firstCall.args[ 0 ] ).to.equal( statusCommands ); | ||
expect( shExecStub.firstCall.args[ 1 ] ).to.deep.equal( { verbosity: 'error' } ); | ||
} ); | ||
@@ -226,0 +227,0 @@ } ); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77497
1799