Skip to content

Commit

Permalink
Add missing dependency graphql (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv authored Feb 11, 2022
1 parent 585c8b1 commit f51090d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"branches",
"branching"
],
"version": "7.0.0",
"version": "7.0.1",
"main": "./dist/entrypoint.module.js",
"types": "dist/entrypoint.module.d.ts",
"bin": {
Expand Down Expand Up @@ -68,6 +68,7 @@
"del": "^6.0.0",
"dotenv": "^16.0.0",
"find-up": "^5.0.0",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
Expand Down Expand Up @@ -98,7 +99,6 @@
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "^16.3.0",
"graphql-config": "^4.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
Expand Down
2 changes: 1 addition & 1 deletion src/backportRun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export async function backportRun(
// don't show spinner for yargs commands that exit the process without stopping the spinner first
const spinner = ora();

if (!argv.help && !argv.version) {
if (!argv.help && !argv.version && !argv.v) {
spinner.start('Initializing...');
}

Expand Down
1 change: 1 addition & 0 deletions src/options/ConfigOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export type ConfigFileOptions = Options &
// yargs options
help: boolean;
version: boolean;
v: boolean;

// only allowed in project config. Not allowed in CI and denoted in plural (historicalBranchLabelMappings) in options from Github
branchLabelMapping: Record<string, string>;
Expand Down
2 changes: 1 addition & 1 deletion src/options/config/projectConfig.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import path from 'path/posix';
import path from 'path';
import findUp from 'find-up';
import { ConfigFileOptions } from '../ConfigOptions';
import { readConfigFile } from '../config/readConfigFile';
Expand Down
2 changes: 1 addition & 1 deletion src/utils/packageVersion.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const PACKAGE_VERSION = '7.0.0';
export const PACKAGE_VERSION = '7.0.1';

0 comments on commit f51090d

Please sign in to comment.