-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Skip notifications when using --json #4930
Conversation
Coverage report
Show files with reduced coverage 🔻
Test suite run success1954 tests passing in 888 suites. Report generated by 🧪jest coverage report action from 9ed8458 |
/snapit |
🫰✨ Thanks @gonzaloriestra! Your snapshot has been published to npm. Test the snapshot by intalling your package globally: pnpm i -g @shopify/[email protected]
|
Differences in type declarationsWe detected differences in the type declarations generated by Typescript for this branch compared to the baseline ('main' branch). Please, review them to ensure they are backward-compatible. Here are some important things to keep in mind:
New type declarationsWe found no new type declarations in this PR Existing type declarationspackages/cli-kit/dist/public/node/cli.d.ts@@ -33,6 +33,9 @@ export declare const globalFlags: {
'no-color': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
verbose: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
};
+export declare const jsonFlag: {
+ json: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
+};
/**
* Clear the CLI cache, used to store some API responses and handle notifications status
*/
packages/cli-kit/dist/public/node/environment.d.ts@@ -43,4 +43,11 @@ export declare function getIdentityTokenInformation(): {
accessToken: string;
refreshToken: string;
userId: string;
-} | undefined;
\ No newline at end of file
+} | undefined;
+/**
+ * Checks if the JSON output is enabled via flag (--json or -j) or environment variable (SHOPIFY_FLAG_JSON).
+ *
+ * @param environment - Process environment variables.
+ * @returns True if the JSON output is enabled, false otherwise.
+ */
+export declare function jsonOutputEnabled(environment?: NodeJS.ProcessEnv): boolean;
\ No newline at end of file
packages/cli-kit/dist/public/node/path.d.ts /// <reference types="node" resolution-mode="require"/>
import type { URL } from 'url';
/**
* Joins a list of paths together.
*
* @param paths - Paths to join.
* @returns Joined path.
*/
export declare function joinPath(...paths: string[]): string;
/**
* Normalizes a path.
*
* @param path - Path to normalize.
* @returns Normalized path.
*/
export declare function normalizePath(path: string): string;
/**
* Resolves a list of paths together.
*
* @param paths - Paths to resolve.
* @returns Resolved path.
*/
export declare function resolvePath(...paths: string[]): string;
/**
* Returns the relative path from one path to another.
*
* @param from - Path to resolve from.
* @param to - Path to resolve to.
* @returns Relative path.
*/
export declare function relativePath(from: string, to: string): string;
/**
* Returns whether the path is absolute.
*
* @param path - Path to check.
* @returns Whether the path is absolute.
*/
export declare function isAbsolutePath(path: string): boolean;
/**
* Returns the directory name of a path.
*
* @param path - Path to get the directory name of.
* @returns Directory name.
*/
export declare function dirname(path: string): string;
/**
* Returns the base name of a path.
*
* @param path - Path to get the base name of.
* @param ext - Optional extension to remove from the result.
* @returns Base name.
*/
export declare function basename(path: string, ext?: string): string;
/**
* Returns the extension of the path.
*
* @param path - Path to get the extension of.
* @returns Extension.
*/
export declare function extname(path: string): string;
/**
* Given an absolute filesystem path, it makes it relative to
* the current working directory. This is useful when logging paths
* to allow the users to click on the file and let the OS open it
* in the editor of choice.
*
* @param path - Path to relativize.
* @param dir - Current working directory.
* @returns Relativized path.
*/
export declare function relativizePath(path: string, dir?: string): string;
/**
* Given 2 paths, it returns whether the second path is a subpath of the first path.
*
* @param mainPath - The main path.
* @param subpath - The subpath.
* @returns Whether the subpath is a subpath of the main path.
*/
export declare function isSubpath(mainPath: string, subpath: string): boolean;
/**
* Given a module's import.meta.url it returns the directory containing the module.
*
* @param moduleURL - The value of import.meta.url in the context of the caller module.
* @returns The path to the directory containing the caller module.
*/
export declare function moduleDirectory(moduleURL: string | URL): string;
/**
* When running a script using `npm run`, something interesting happens. If the current
* folder does not have a `package.json` or a `node_modules` folder, npm will traverse
* the directory tree upwards until it finds one. Then it will run the script and set
* `process.cwd()` to that folder, while the actual path is stored in the INIT_CWD
* environment variable (see here: https://docs.npmjs.com/cli/v9/commands/npm-run-script#description).
*
* @returns The path to the current working directory.
*/
export declare function cwd(): string;
/**
* Tries to get the value of the `--path` argument, if provided.
*
* @param argv - The arguments to search for the `--path` argument.
* @returns The value of the `--path` argument, if provided.
*/
export declare function sniffForPath(argv?: string[]): string | undefined;
/**
- * Returns whether the `--json` flag is present in the arguments.
+ * Returns whether the `--json` or `-j` flags are present in the arguments.
*
- * @param argv - The arguments to search for the `--json` flag.
- * @returns Whether the `--json` flag is present in the arguments.
+ * @param argv - The arguments to search for the `--json` and `-j` flags.
+ * @returns Whether the `--json` or `-j` flag is present in the arguments.
*/
export declare function sniffForJson(argv?: string[]): boolean;
packages/cli-kit/dist/private/node/constants.d.ts@@ -30,6 +30,7 @@ export declare const environmentVariables: {
refreshToken: string;
otelURL: string;
themeKitAccessDomain: string;
+ json: string;
};
export declare const defaultThemeKitAccessDomain = "theme-kit-access.shopifyapps.com";
export declare const systemEnvironmentVariables: {
|
WHY are these changes introduced?
Fixes #4925
WHAT is this pull request doing?
--json
or-j
flags are used, or theSHOPIFY_FLAG_JSON
environment variable--json
flag across commands. Some where missing the shortcut-j
and the descriptions were different.showMultipleCLIWarningIfNeeded
, where we were only checking for--json
How to test your changes?
pnpm i -g @shopify/[email protected]
SHOPIFY_CLI_NOTIFICATIONS_URL=https://shopify.link/MNbn shopify theme list
SHOPIFY_CLI_NOTIFICATIONS_URL=https://shopify.link/MNbn shopify theme list --json
SHOPIFY_CLI_NOTIFICATIONS_URL=https://shopify.link/MNbn shopify theme list -j
SHOPIFY_FLAG_JSON=1 SHOPIFY_CLI_NOTIFICATIONS_URL=https://shopify.link/MNbn shopify theme list
Measuring impact
How do we know this change was effective? Please choose one:
Checklist