Skip to content

Commit

Permalink
chore: dependencies update (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidk92 authored Jun 20, 2024
1 parent 5ca8deb commit d56e2bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
"build": "rm -rf dist && tsc -p tsconfig.json && chmod u+x ./dist/command.js"
},
"dependencies": {
"@sherlo/api-types": "1.1.4",
"@sherlo/common-client": "1.1.4",
"@sherlo/sdk-client": "1.1.4",
"@sherlo/shared": "1.1.4",
"@sherlo/api-types": "1.1.5",
"@sherlo/common-client": "1.1.5",
"@sherlo/sdk-client": "1.1.5",
"@sherlo/shared": "1.1.5",
"chalk": "4.1.2",
"commander": "12.0.0",
"git-rev-sync": "3.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function parseConfigFile(path: string): InvalidatedConfig {
case 'ENOENT':
throw new Error(
getConfigErrorMessage(
`config file "${path}" not found; make sure the path is correct or pass the \`--projectRoot\` flag to the script`,
`config file "${path}" not found - make sure the path is correct or pass the \`--projectRoot\` flag to the script`,
docsLink.scriptFlags
)
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { getErrorMessage } from '../../utils';
import { docsLink } from '../../constants';

function handleClientError(error: any) {
if (error.networkError.statusCode === 401) {
if (error.networkError?.statusCode === 401) {
throw new Error(
getErrorMessage({
type: 'auth',
Expand Down

0 comments on commit d56e2bb

Please sign in to comment.