Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

graphql-config

Package Overview
Dependencies
Maintainers
4
Versions
320
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-config - npm Package Compare versions

Comparing version 4.5.0-alpha-20230306152841-2d9e329 to 4.5.0-alpha-20230306152909-5aff292

6

package.json
{
"name": "graphql-config",
"version": "4.5.0-alpha-20230306152841-2d9e329",
"version": "4.5.0-alpha-20230306152909-5aff292",
"description": "The easiest way to configure your development environment with your GraphQL schema (supported by most tools, editors & IDEs)",

@@ -22,5 +22,5 @@ "sideEffects": false,

"@graphql-tools/utils": "^9.0.0",
"cosmiconfig": "8.1.0",
"cosmiconfig": "8.0.0",
"jiti": "1.17.1",
"minimatch": "4.2.3",
"minimatch": "7.4.2",
"string-env-interpolation": "1.0.1",

@@ -27,0 +27,0 @@ "tslib": "^2.4.0"

@@ -7,4 +7,32 @@ export interface ConfigSearchResult {

export declare function isLegacyConfig(filePath: string): boolean;
export declare function createCosmiConfig(moduleName: string, legacy: boolean): import("cosmiconfig").PublicExplorer;
export declare function createCosmiConfigSync(moduleName: string, legacy: boolean): import("cosmiconfig").PublicExplorerSync;
export declare function createCosmiConfig(moduleName: string, legacy: boolean): {
readonly search: (searchFrom?: string) => Promise<{
config: any;
filepath: string;
isEmpty?: boolean;
}>;
readonly load: (filepath: string) => Promise<{
config: any;
filepath: string;
isEmpty?: boolean;
}>;
readonly clearLoadCache: () => void;
readonly clearSearchCache: () => void;
readonly clearCaches: () => void;
};
export declare function createCosmiConfigSync(moduleName: string, legacy: boolean): {
readonly search: (searchFrom?: string) => {
config: any;
filepath: string;
isEmpty?: boolean;
};
readonly load: (filepath: string) => {
config: any;
filepath: string;
isEmpty?: boolean;
};
readonly clearLoadCache: () => void;
readonly clearSearchCache: () => void;
readonly clearCaches: () => void;
};
//# sourceMappingURL=cosmiconfig.d.ts.map

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc