@powerlines/plugin-graphql 0.1.290 → 0.1.292

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  const require_rolldown_runtime = require('./_virtual/rolldown_runtime.cjs');
3
- const require_chunk_POXTJ6GF = require('./node_modules/.pnpm/@storm-software_config-tools@1.189.9_magicast@0.5.2/node_modules/@storm-software/config-tools/dist/chunk-POXTJ6GF.cjs');
3
+ const require_chunk_POXTJ6GF = require('./node_modules/.pnpm/@storm-software_config-tools@1.189.10_magicast@0.5.2/node_modules/@storm-software/config-tools/dist/chunk-POXTJ6GF.cjs');
4
4
  let __graphql_codegen_cli = require("@graphql-codegen/cli");
5
5
  let __stryke_path_file_path_fns = require("@stryke/path/file-path-fns");
6
6
  let __stryke_path_is_parent_path = require("@stryke/path/is-parent-path");
@@ -8,8 +8,7 @@ let __stryke_path_join_paths = require("@stryke/path/join-paths");
8
8
  let __stryke_path_replace = require("@stryke/path/replace");
9
9
  let defu = require("defu");
10
10
  defu = require_rolldown_runtime.__toESM(defu);
11
- let powerlines_plugin_utils_get_config_path = require("powerlines/plugin-utils/get-config-path");
12
- let powerlines_plugin_utils_paths = require("powerlines/plugin-utils/paths");
11
+ let powerlines_plugin_utils = require("powerlines/plugin-utils");
13
12
 
14
13
  //#region src/index.ts
15
14
  /**
@@ -24,9 +23,9 @@ const plugin = (options = {}) => {
24
23
  config() {
25
24
  let configFile = options.configFile;
26
25
  if (!configFile) {
27
- configFile = (0, powerlines_plugin_utils_get_config_path.getConfigPath)(this, "codegen");
26
+ configFile = (0, powerlines_plugin_utils.getConfigPath)(this, "codegen");
28
27
  if (!configFile) {
29
- configFile = (0, powerlines_plugin_utils_get_config_path.getConfigPath)(this, "graphql-codegen");
28
+ configFile = (0, powerlines_plugin_utils.getConfigPath)(this, "graphql-codegen");
30
29
  if (!configFile) throw new Error(`No GraphQL Codegen configuration file found. Please specify a valid config file path in the Biome plugin's \`configFile\` options.`);
31
30
  }
32
31
  }
@@ -40,13 +39,13 @@ const plugin = (options = {}) => {
40
39
  },
41
40
  async configResolved() {
42
41
  this.dependencies.graphql = "latest";
43
- this.config.graphql.outputPath = (0, powerlines_plugin_utils_paths.replacePathTokens)(this, this.config.graphql.outputPath);
42
+ this.config.graphql.outputPath = (0, powerlines_plugin_utils.replacePathTokens)(this, this.config.graphql.outputPath);
44
43
  this.graphql ??= {};
45
44
  this.graphql.codegen = await (0, __graphql_codegen_cli.loadContext)(this.config.graphql.configFile);
46
45
  (0, __graphql_codegen_cli.updateContextWithCliFlags)(this.graphql.codegen, {
47
46
  require: [],
48
47
  overwrite: true,
49
- project: this.config.projectRoot,
48
+ project: this.config.root,
50
49
  ...this.config.graphql,
51
50
  config: this.config.graphql.configFile,
52
51
  watch: false
@@ -55,7 +54,7 @@ const plugin = (options = {}) => {
55
54
  async prepare() {
56
55
  const result = await (0, __graphql_codegen_cli.generate)({
57
56
  ...this.graphql.codegen,
58
- cwd: (0, __stryke_path_join_paths.joinPaths)(this.workspaceConfig.workspaceRoot, this.config.projectRoot)
57
+ cwd: (0, __stryke_path_join_paths.joinPaths)(this.workspaceConfig.workspaceRoot, this.config.root)
59
58
  }, false);
60
59
  if ((0, __stryke_path_is_parent_path.isParentPath)(this.config.graphql.outputPath, this.builtinsPath)) await Promise.all(result.map(async (output) => this.emitBuiltin(output.content, (0, __stryke_path_file_path_fns.findFileName)((0, __stryke_path_join_paths.joinPaths)((0, __stryke_path_replace.replacePath)(this.config.graphql.outputPath, this.builtinsPath), output.filename), { withExtension: false }))));
61
60
  else await Promise.all(result.map(async (output) => this.fs.write((0, __stryke_path_join_paths.joinPaths)(this.config.graphql.outputPath, output.filename), output.content)));
package/dist/index.d.cts CHANGED
@@ -1,9 +1,13 @@
1
1
  import { GraphQLPluginContext, GraphQLPluginOptions, GraphQLPluginResolvedConfig, GraphQLPluginUserConfig, __ΩGraphQLPluginContext, __ΩGraphQLPluginOptions, __ΩGraphQLPluginResolvedConfig, __ΩGraphQLPluginUserConfig } from "./types/plugin.cjs";
2
2
  import "./types/index.cjs";
3
- import { Plugin } from "powerlines/types/plugin";
3
+ import { Plugin } from "powerlines";
4
4
 
5
5
  //#region src/index.d.ts
6
-
6
+ declare module "powerlines" {
7
+ interface UserConfig {
8
+ graphql?: GraphQLPluginOptions;
9
+ }
10
+ }
7
11
  /**
8
12
  * A Powerlines plugin to integrate GraphQL for code generation.
9
13
  *
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;AA8CA;;;;AAIU,cAJG,MAIH,EAAA,CAAA,iBAHS,oBAGT,GAHgC,oBAGhC,CAAA,CAAA,OAAA,CAAA,EADC,oBACD,EAAA,GAAP,MAAO,CAAA,QAAA,CAAA"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;IAqCwB,OAAA,CAAA,EAIV,oBAJU;EAAA;;;;AAcxB;;;;AAIU,cAJG,MAIH,EAAA,CAAA,iBAHS,oBAGT,GAHgC,oBAGhC,CAAA,CAAA,OAAA,CAAA,EADC,oBACD,EAAA,GAAP,MAAO,CAAA,QAAA,CAAA"}
package/dist/index.d.mts CHANGED
@@ -1,9 +1,13 @@
1
1
  import { GraphQLPluginContext, GraphQLPluginOptions, GraphQLPluginResolvedConfig, GraphQLPluginUserConfig, __ΩGraphQLPluginContext, __ΩGraphQLPluginOptions, __ΩGraphQLPluginResolvedConfig, __ΩGraphQLPluginUserConfig } from "./types/plugin.mjs";
2
2
  import "./types/index.mjs";
3
- import { Plugin } from "powerlines/types/plugin";
3
+ import { Plugin } from "powerlines";
4
4
 
5
5
  //#region src/index.d.ts
6
-
6
+ declare module "powerlines" {
7
+ interface UserConfig {
8
+ graphql?: GraphQLPluginOptions;
9
+ }
10
+ }
7
11
  /**
8
12
  * A Powerlines plugin to integrate GraphQL for code generation.
9
13
  *
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;AA8CA;;;;AAIU,cAJG,MAIH,EAAA,CAAA,iBAHS,oBAGT,GAHgC,oBAGhC,CAAA,CAAA,OAAA,CAAA,EADC,oBACD,EAAA,GAAP,MAAO,CAAA,QAAA,CAAA"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;IAqCwB,OAAA,CAAA,EAIV,oBAJU;EAAA;;;;AAcxB;;;;AAIU,cAJG,MAIH,EAAA,CAAA,iBAHS,oBAGT,GAHgC,oBAGhC,CAAA,CAAA,OAAA,CAAA,EADC,oBACD,EAAA,GAAP,MAAO,CAAA,QAAA,CAAA"}
package/dist/index.mjs CHANGED
@@ -1,12 +1,11 @@
1
- import { LogLevelLabel } from "./node_modules/.pnpm/@storm-software_config-tools@1.189.9_magicast@0.5.2/node_modules/@storm-software/config-tools/dist/chunk-POXTJ6GF.mjs";
1
+ import { LogLevelLabel } from "./node_modules/.pnpm/@storm-software_config-tools@1.189.10_magicast@0.5.2/node_modules/@storm-software/config-tools/dist/chunk-POXTJ6GF.mjs";
2
2
  import { generate, loadContext, updateContextWithCliFlags } from "@graphql-codegen/cli";
3
3
  import { findFileName } from "@stryke/path/file-path-fns";
4
4
  import { isParentPath } from "@stryke/path/is-parent-path";
5
5
  import { joinPaths } from "@stryke/path/join-paths";
6
6
  import { replacePath } from "@stryke/path/replace";
7
7
  import defu from "defu";
8
- import { getConfigPath } from "powerlines/plugin-utils/get-config-path";
9
- import { replacePathTokens } from "powerlines/plugin-utils/paths";
8
+ import { getConfigPath, replacePathTokens } from "powerlines/plugin-utils";
10
9
 
11
10
  //#region src/index.ts
12
11
  /**
@@ -43,7 +42,7 @@ const plugin = (options = {}) => {
43
42
  updateContextWithCliFlags(this.graphql.codegen, {
44
43
  require: [],
45
44
  overwrite: true,
46
- project: this.config.projectRoot,
45
+ project: this.config.root,
47
46
  ...this.config.graphql,
48
47
  config: this.config.graphql.configFile,
49
48
  watch: false
@@ -52,7 +51,7 @@ const plugin = (options = {}) => {
52
51
  async prepare() {
53
52
  const result = await generate({
54
53
  ...this.graphql.codegen,
55
- cwd: joinPaths(this.workspaceConfig.workspaceRoot, this.config.projectRoot)
54
+ cwd: joinPaths(this.workspaceConfig.workspaceRoot, this.config.root)
56
55
  }, false);
57
56
  if (isParentPath(this.config.graphql.outputPath, this.builtinsPath)) await Promise.all(result.map(async (output) => this.emitBuiltin(output.content, findFileName(joinPaths(replacePath(this.config.graphql.outputPath, this.builtinsPath), output.filename), { withExtension: false }))));
58
57
  else await Promise.all(result.map(async (output) => this.fs.write(joinPaths(this.config.graphql.outputPath, output.filename), output.content)));
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport {\n generate,\n loadContext,\n updateContextWithCliFlags\n} from \"@graphql-codegen/cli\";\nimport { LogLevelLabel } from \"@storm-software/config-tools/types\";\nimport { findFileName } from \"@stryke/path/file-path-fns\";\nimport { isParentPath } from \"@stryke/path/is-parent-path\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { replacePath } from \"@stryke/path/replace\";\nimport defu from \"defu\";\nimport { getConfigPath } from \"powerlines/plugin-utils/get-config-path\";\nimport { replacePathTokens } from \"powerlines/plugin-utils/paths\";\nimport { Plugin } from \"powerlines/types/plugin\";\nimport {\n GraphQLPluginContext,\n GraphQLPluginOptions,\n GraphQLPluginUserConfig\n} from \"./types/plugin\";\n\nexport * from \"./types\";\n\n/**\n * A Powerlines plugin to integrate GraphQL for code generation.\n *\n * @param options - The plugin options.\n * @returns A Powerlines plugin instance.\n */\nexport const plugin = <\n TContext extends GraphQLPluginContext = GraphQLPluginContext\n>(\n options: GraphQLPluginOptions = {}\n): Plugin<TContext> => {\n return {\n name: \"graphql\",\n config() {\n let configFile = options.configFile;\n if (!configFile) {\n configFile = getConfigPath(this, \"codegen\");\n if (!configFile) {\n configFile = getConfigPath(this, \"graphql-codegen\");\n if (!configFile) {\n throw new Error(\n `No GraphQL Codegen configuration file found. Please specify a valid config file path in the Biome plugin's \\`configFile\\` options.`\n );\n }\n }\n }\n\n return {\n graphql: defu(options, {\n configFile,\n silent: this.config.logLevel === null,\n verbose:\n this.config.logLevel === LogLevelLabel.DEBUG ||\n this.config.logLevel === LogLevelLabel.TRACE,\n debug: this.config.mode === \"development\",\n outputPath: joinPaths(\"{builtinPath}\", \"graphql\")\n })\n } as Partial<GraphQLPluginUserConfig>;\n },\n async configResolved() {\n this.dependencies.graphql = \"latest\";\n\n this.config.graphql.outputPath = replacePathTokens(\n this,\n this.config.graphql.outputPath\n );\n\n this.graphql ??= {} as GraphQLPluginContext[\"graphql\"];\n\n this.graphql.codegen = await loadContext(this.config.graphql.configFile);\n updateContextWithCliFlags(this.graphql.codegen, {\n require: [],\n overwrite: true,\n project: this.config.projectRoot,\n ...this.config.graphql,\n config: this.config.graphql.configFile,\n watch: false\n });\n },\n async prepare() {\n const result = await generate(\n {\n ...this.graphql.codegen,\n cwd: joinPaths(\n this.workspaceConfig.workspaceRoot,\n this.config.projectRoot\n )\n } as Parameters<typeof generate>[0],\n false\n );\n\n if (isParentPath(this.config.graphql.outputPath, this.builtinsPath)) {\n await Promise.all(\n result.map(async output =>\n this.emitBuiltin(\n output.content,\n findFileName(\n joinPaths(\n replacePath(\n this.config.graphql.outputPath,\n this.builtinsPath\n ),\n output.filename\n ),\n { withExtension: false }\n )\n )\n )\n );\n } else {\n await Promise.all(\n result.map(async output =>\n this.fs.write(\n joinPaths(this.config.graphql.outputPath, output.filename),\n output.content\n )\n )\n );\n }\n }\n };\n};\n\nexport default plugin;\n"],"mappings":";;;;;;;;;;;;;;;;;AA8CA,MAAa,UAGX,UAAgC,EAAE,KACb;AACrB,QAAO;EACL,MAAM;EACN,SAAS;GACP,IAAI,aAAa,QAAQ;AACzB,OAAI,CAAC,YAAY;AACf,iBAAa,cAAc,MAAM,UAAU;AAC3C,QAAI,CAAC,YAAY;AACf,kBAAa,cAAc,MAAM,kBAAkB;AACnD,SAAI,CAAC,WACH,OAAM,IAAI,MACR,qIACD;;;AAKP,UAAO,EACL,SAAS,KAAK,SAAS;IACrB;IACA,QAAQ,KAAK,OAAO,aAAa;IACjC,SACE,KAAK,OAAO,aAAa,cAAc,SACvC,KAAK,OAAO,aAAa,cAAc;IACzC,OAAO,KAAK,OAAO,SAAS;IAC5B,YAAY,UAAU,iBAAiB,UAAU;IAClD,CAAC,EACH;;EAEH,MAAM,iBAAiB;AACrB,QAAK,aAAa,UAAU;AAE5B,QAAK,OAAO,QAAQ,aAAa,kBAC/B,MACA,KAAK,OAAO,QAAQ,WACrB;AAED,QAAK,YAAY,EAAE;AAEnB,QAAK,QAAQ,UAAU,MAAM,YAAY,KAAK,OAAO,QAAQ,WAAW;AACxE,6BAA0B,KAAK,QAAQ,SAAS;IAC9C,SAAS,EAAE;IACX,WAAW;IACX,SAAS,KAAK,OAAO;IACrB,GAAG,KAAK,OAAO;IACf,QAAQ,KAAK,OAAO,QAAQ;IAC5B,OAAO;IACR,CAAC;;EAEJ,MAAM,UAAU;GACd,MAAM,SAAS,MAAM,SACnB;IACE,GAAG,KAAK,QAAQ;IAChB,KAAK,UACH,KAAK,gBAAgB,eACrB,KAAK,OAAO,YACb;IACF,EACD,MACD;AAED,OAAI,aAAa,KAAK,OAAO,QAAQ,YAAY,KAAK,aAAa,CACjE,OAAM,QAAQ,IACZ,OAAO,IAAI,OAAM,WACf,KAAK,YACH,OAAO,SACP,aACE,UACE,YACE,KAAK,OAAO,QAAQ,YACpB,KAAK,aACN,EACD,OAAO,SACR,EACD,EAAE,eAAe,OAAO,CACzB,CACF,CACF,CACF;OAED,OAAM,QAAQ,IACZ,OAAO,IAAI,OAAM,WACf,KAAK,GAAG,MACN,UAAU,KAAK,OAAO,QAAQ,YAAY,OAAO,SAAS,EAC1D,OAAO,QACR,CACF,CACF;;EAGN;;AAGH,kBAAe"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport {\n generate,\n loadContext,\n updateContextWithCliFlags\n} from \"@graphql-codegen/cli\";\nimport { LogLevelLabel } from \"@storm-software/config-tools/types\";\nimport { findFileName } from \"@stryke/path/file-path-fns\";\nimport { isParentPath } from \"@stryke/path/is-parent-path\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { replacePath } from \"@stryke/path/replace\";\nimport defu from \"defu\";\nimport { Plugin } from \"powerlines\";\nimport { getConfigPath, replacePathTokens } from \"powerlines/plugin-utils\";\nimport {\n GraphQLPluginContext,\n GraphQLPluginOptions,\n GraphQLPluginUserConfig\n} from \"./types/plugin\";\n\nexport * from \"./types\";\n\ndeclare module \"powerlines\" {\n export interface UserConfig {\n graphql?: GraphQLPluginOptions;\n }\n}\n\n/**\n * A Powerlines plugin to integrate GraphQL for code generation.\n *\n * @param options - The plugin options.\n * @returns A Powerlines plugin instance.\n */\nexport const plugin = <\n TContext extends GraphQLPluginContext = GraphQLPluginContext\n>(\n options: GraphQLPluginOptions = {}\n): Plugin<TContext> => {\n return {\n name: \"graphql\",\n config() {\n let configFile = options.configFile;\n if (!configFile) {\n configFile = getConfigPath(this, \"codegen\");\n if (!configFile) {\n configFile = getConfigPath(this, \"graphql-codegen\");\n if (!configFile) {\n throw new Error(\n `No GraphQL Codegen configuration file found. Please specify a valid config file path in the Biome plugin's \\`configFile\\` options.`\n );\n }\n }\n }\n\n return {\n graphql: defu(options, {\n configFile,\n silent: this.config.logLevel === null,\n verbose:\n this.config.logLevel === LogLevelLabel.DEBUG ||\n this.config.logLevel === LogLevelLabel.TRACE,\n debug: this.config.mode === \"development\",\n outputPath: joinPaths(\"{builtinPath}\", \"graphql\")\n })\n } as Partial<GraphQLPluginUserConfig>;\n },\n async configResolved() {\n this.dependencies.graphql = \"latest\";\n\n this.config.graphql.outputPath = replacePathTokens(\n this,\n this.config.graphql.outputPath\n );\n\n this.graphql ??= {} as GraphQLPluginContext[\"graphql\"];\n\n this.graphql.codegen = await loadContext(this.config.graphql.configFile);\n updateContextWithCliFlags(this.graphql.codegen, {\n require: [],\n overwrite: true,\n project: this.config.root,\n ...this.config.graphql,\n config: this.config.graphql.configFile,\n watch: false\n });\n },\n async prepare() {\n const result = await generate(\n {\n ...this.graphql.codegen,\n cwd: joinPaths(this.workspaceConfig.workspaceRoot, this.config.root)\n } as Parameters<typeof generate>[0],\n false\n );\n\n if (isParentPath(this.config.graphql.outputPath, this.builtinsPath)) {\n await Promise.all(\n result.map(async output =>\n this.emitBuiltin(\n output.content,\n findFileName(\n joinPaths(\n replacePath(\n this.config.graphql.outputPath,\n this.builtinsPath\n ),\n output.filename\n ),\n { withExtension: false }\n )\n )\n )\n );\n } else {\n await Promise.all(\n result.map(async output =>\n this.fs.write(\n joinPaths(this.config.graphql.outputPath, output.filename),\n output.content\n )\n )\n );\n }\n }\n };\n};\n\nexport default plugin;\n"],"mappings":";;;;;;;;;;;;;;;;AAmDA,MAAa,UAGX,UAAgC,EAAE,KACb;AACrB,QAAO;EACL,MAAM;EACN,SAAS;GACP,IAAI,aAAa,QAAQ;AACzB,OAAI,CAAC,YAAY;AACf,iBAAa,cAAc,MAAM,UAAU;AAC3C,QAAI,CAAC,YAAY;AACf,kBAAa,cAAc,MAAM,kBAAkB;AACnD,SAAI,CAAC,WACH,OAAM,IAAI,MACR,qIACD;;;AAKP,UAAO,EACL,SAAS,KAAK,SAAS;IACrB;IACA,QAAQ,KAAK,OAAO,aAAa;IACjC,SACE,KAAK,OAAO,aAAa,cAAc,SACvC,KAAK,OAAO,aAAa,cAAc;IACzC,OAAO,KAAK,OAAO,SAAS;IAC5B,YAAY,UAAU,iBAAiB,UAAU;IAClD,CAAC,EACH;;EAEH,MAAM,iBAAiB;AACrB,QAAK,aAAa,UAAU;AAE5B,QAAK,OAAO,QAAQ,aAAa,kBAC/B,MACA,KAAK,OAAO,QAAQ,WACrB;AAED,QAAK,YAAY,EAAE;AAEnB,QAAK,QAAQ,UAAU,MAAM,YAAY,KAAK,OAAO,QAAQ,WAAW;AACxE,6BAA0B,KAAK,QAAQ,SAAS;IAC9C,SAAS,EAAE;IACX,WAAW;IACX,SAAS,KAAK,OAAO;IACrB,GAAG,KAAK,OAAO;IACf,QAAQ,KAAK,OAAO,QAAQ;IAC5B,OAAO;IACR,CAAC;;EAEJ,MAAM,UAAU;GACd,MAAM,SAAS,MAAM,SACnB;IACE,GAAG,KAAK,QAAQ;IAChB,KAAK,UAAU,KAAK,gBAAgB,eAAe,KAAK,OAAO,KAAK;IACrE,EACD,MACD;AAED,OAAI,aAAa,KAAK,OAAO,QAAQ,YAAY,KAAK,aAAa,CACjE,OAAM,QAAQ,IACZ,OAAO,IAAI,OAAM,WACf,KAAK,YACH,OAAO,SACP,aACE,UACE,YACE,KAAK,OAAO,QAAQ,YACpB,KAAK,aACN,EACD,OAAO,SACR,EACD,EAAE,eAAe,OAAO,CACzB,CACF,CACF,CACF;OAED,OAAM,QAAQ,IACZ,OAAO,IAAI,OAAM,WACf,KAAK,GAAG,MACN,UAAU,KAAK,OAAO,QAAQ,YAAY,OAAO,SAAS,EAC1D,OAAO,QACR,CACF,CACF;;EAGN;;AAGH,kBAAe"}
@@ -1,5 +1,5 @@
1
1
 
2
- //#region ../../node_modules/.pnpm/@storm-software+config-tools@1.189.9_magicast@0.5.2/node_modules/@storm-software/config-tools/dist/chunk-POXTJ6GF.js
2
+ //#region ../../node_modules/.pnpm/@storm-software+config-tools@1.189.10_magicast@0.5.2/node_modules/@storm-software/config-tools/dist/chunk-POXTJ6GF.js
3
3
  var LogLevelLabel = {
4
4
  SILENT: "silent",
5
5
  FATAL: "fatal",
@@ -1,4 +1,4 @@
1
- //#region ../../node_modules/.pnpm/@storm-software+config-tools@1.189.9_magicast@0.5.2/node_modules/@storm-software/config-tools/dist/chunk-POXTJ6GF.js
1
+ //#region ../../node_modules/.pnpm/@storm-software+config-tools@1.189.10_magicast@0.5.2/node_modules/@storm-software/config-tools/dist/chunk-POXTJ6GF.js
2
2
  var LogLevelLabel = {
3
3
  SILENT: "silent",
4
4
  FATAL: "fatal",
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chunk-POXTJ6GF.mjs","names":[],"sources":["../../../../../../../../../../node_modules/.pnpm/@storm-software+config-tools@1.189.10_magicast@0.5.2/node_modules/@storm-software/config-tools/dist/chunk-POXTJ6GF.js"],"sourcesContent":["// src/types.ts\nvar LogLevel = {\n SILENT: 0,\n FATAL: 10,\n ERROR: 20,\n WARN: 30,\n SUCCESS: 35,\n INFO: 40,\n DEBUG: 60,\n TRACE: 70,\n ALL: 100\n};\nvar LogLevelLabel = {\n SILENT: \"silent\",\n FATAL: \"fatal\",\n ERROR: \"error\",\n WARN: \"warn\",\n SUCCESS: \"success\",\n INFO: \"info\",\n DEBUG: \"debug\",\n TRACE: \"trace\",\n ALL: \"all\"\n};\n\nexport {\n LogLevel,\n LogLevelLabel\n};\n"],"x_google_ignoreList":[0],"mappings":";AAYA,IAAI,gBAAgB;CAClB,QAAQ;CACR,OAAO;CACP,OAAO;CACP,MAAM;CACN,SAAS;CACT,MAAM;CACN,OAAO;CACP,OAAO;CACP,KAAK;CACN"}
@@ -1,7 +1,5 @@
1
+ import { PluginContext, ResolvedConfig, UserConfig } from "powerlines";
1
2
  import { CodegenContext, YamlCliFlags } from "@graphql-codegen/cli";
2
- import { UserConfig } from "powerlines/types/config";
3
- import { PluginContext } from "powerlines/types/context";
4
- import { ResolvedConfig } from "powerlines/types/resolved";
5
3
 
6
4
  //#region src/types/plugin.d.ts
7
5
  type GraphQLPluginOptions = Partial<Omit<YamlCliFlags, "config" | "watch">> & {
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;;;KAuBY,oBAAA,GAAuB,QACjC,KAAK;;AADP;;;;;EAsBY,UAAA,CAAA,EAAA,MAAA;EAA0B;;;;;;;;EAM1B,UAAA,CAAA,EAAA,MAAA;AAGZ,CAAA;AAA0C,KAT9B,uBAAA,GAA0B,UASI,GAAA;EAEtC,OAAA,CAAA,EAVQ,IAUR,CATA,YASA,EAAA,QAAA,GAAA,OAAA,GAAA,SAAA,GAAA,WAAA,GAAA,SAAA,CAAA,GANA,IAMA,CANK,oBAML,EAAA,YAAA,GAAA,YAAA,CAAA,GALA,QAKA,CALS,IAKT,CALc,oBAKd,EAAA,YAAA,GAAA,YAAA,CAAA,CAAA;CADO;AAIF,KALG,2BAAA,GAA8B,cAKjC,GAAA;EAAL,OAAA,EAJO,IAIP,CAHA,YAGA,EAAA,QAAA,GAAA,OAAA,GAAA,SAAA,GAAA,WAAA,GAAA,SAAA,CAAA,GAAA,IAAA,CAAK,oBAAL,EAAA,YAAA,GAAA,YAAA,CAAA,GACA,QADA,CACS,IADT,CACc,oBADd,EAAA,YAAA,GAAA,YAAA,CAAA,CAAA;CACc;AAAL,KAGD,oBAHC,CAAA,wBAKT,2BALS,GAKqB,2BALrB,CAAA,GAMT,aANS,CAMK,eANL,CAAA,GAAA;EAAT,OAAA,EAAA;IAAQ,OAAA,EAQC,cARD;EAGA,CAAA;CAER;AAA8B,uCAAA,GAAA,EAAA;AAChB,0CAAA,GAAA,EAAA;AAAd,8CAAA,GAAA,EAAA;AAES,uCAAA,GAAA,EAAA"}
1
+ {"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;KAqBY,oBAAA,GAAuB,QACjC,KAAK;;AADP;;;;;EAsBY,UAAA,CAAA,EAAA,MAAA;EAA0B;;;;;;;;EAM1B,UAAA,CAAA,EAAA,MAAA;AAGZ,CAAA;AAA0C,KAT9B,uBAAA,GAA0B,UASI,GAAA;EAEtC,OAAA,CAAA,EAVQ,IAUR,CATA,YASA,EAAA,QAAA,GAAA,OAAA,GAAA,SAAA,GAAA,WAAA,GAAA,SAAA,CAAA,GANA,IAMA,CANK,oBAML,EAAA,YAAA,GAAA,YAAA,CAAA,GALA,QAKA,CALS,IAKT,CALc,oBAKd,EAAA,YAAA,GAAA,YAAA,CAAA,CAAA;CADO;AAIF,KALG,2BAAA,GAA8B,cAKjC,GAAA;EAAL,OAAA,EAJO,IAIP,CAHA,YAGA,EAAA,QAAA,GAAA,OAAA,GAAA,SAAA,GAAA,WAAA,GAAA,SAAA,CAAA,GAAA,IAAA,CAAK,oBAAL,EAAA,YAAA,GAAA,YAAA,CAAA,GACA,QADA,CACS,IADT,CACc,oBADd,EAAA,YAAA,GAAA,YAAA,CAAA,CAAA;CACc;AAAL,KAGD,oBAHC,CAAA,wBAIa,2BAJb,GAKT,2BALS,CAAA,GAMT,aANS,CAMK,eANL,CAAA,GAAA;EAAT,OAAA,EAAA;IAAQ,OAAA,EAQC,cARD;EAGA,CAAA;CACc;AACtB,uCAAA,GAAA,EAAA;AACc,0CAAA,GAAA,EAAA;AAAd,8CAAA,GAAA,EAAA;AAES,uCAAA,GAAA,EAAA"}
@@ -1,7 +1,5 @@
1
1
  import { CodegenContext, YamlCliFlags } from "@graphql-codegen/cli";
2
- import { UserConfig } from "powerlines/types/config";
3
- import { PluginContext } from "powerlines/types/context";
4
- import { ResolvedConfig } from "powerlines/types/resolved";
2
+ import { PluginContext, ResolvedConfig, UserConfig } from "powerlines";
5
3
 
6
4
  //#region src/types/plugin.d.ts
7
5
  type GraphQLPluginOptions = Partial<Omit<YamlCliFlags, "config" | "watch">> & {
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;;;KAuBY,oBAAA,GAAuB,QACjC,KAAK;;AADP;;;;;EAsBY,UAAA,CAAA,EAAA,MAAA;EAA0B;;;;;;;;EAM1B,UAAA,CAAA,EAAA,MAAA;AAGZ,CAAA;AAA0C,KAT9B,uBAAA,GAA0B,UASI,GAAA;EAEtC,OAAA,CAAA,EAVQ,IAUR,CATA,YASA,EAAA,QAAA,GAAA,OAAA,GAAA,SAAA,GAAA,WAAA,GAAA,SAAA,CAAA,GANA,IAMA,CANK,oBAML,EAAA,YAAA,GAAA,YAAA,CAAA,GALA,QAKA,CALS,IAKT,CALc,oBAKd,EAAA,YAAA,GAAA,YAAA,CAAA,CAAA;CADO;AAIF,KALG,2BAAA,GAA8B,cAKjC,GAAA;EAAL,OAAA,EAJO,IAIP,CAHA,YAGA,EAAA,QAAA,GAAA,OAAA,GAAA,SAAA,GAAA,WAAA,GAAA,SAAA,CAAA,GAAA,IAAA,CAAK,oBAAL,EAAA,YAAA,GAAA,YAAA,CAAA,GACA,QADA,CACS,IADT,CACc,oBADd,EAAA,YAAA,GAAA,YAAA,CAAA,CAAA;CACc;AAAL,KAGD,oBAHC,CAAA,wBAKT,2BALS,GAKqB,2BALrB,CAAA,GAMT,aANS,CAMK,eANL,CAAA,GAAA;EAAT,OAAA,EAAA;IAAQ,OAAA,EAQC,cARD;EAGA,CAAA;CAER;AAA8B,uCAAA,GAAA,EAAA;AAChB,0CAAA,GAAA,EAAA;AAAd,8CAAA,GAAA,EAAA;AAES,uCAAA,GAAA,EAAA"}
1
+ {"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;KAqBY,oBAAA,GAAuB,QACjC,KAAK;;AADP;;;;;EAsBY,UAAA,CAAA,EAAA,MAAA;EAA0B;;;;;;;;EAM1B,UAAA,CAAA,EAAA,MAAA;AAGZ,CAAA;AAA0C,KAT9B,uBAAA,GAA0B,UASI,GAAA;EAEtC,OAAA,CAAA,EAVQ,IAUR,CATA,YASA,EAAA,QAAA,GAAA,OAAA,GAAA,SAAA,GAAA,WAAA,GAAA,SAAA,CAAA,GANA,IAMA,CANK,oBAML,EAAA,YAAA,GAAA,YAAA,CAAA,GALA,QAKA,CALS,IAKT,CALc,oBAKd,EAAA,YAAA,GAAA,YAAA,CAAA,CAAA;CADO;AAIF,KALG,2BAAA,GAA8B,cAKjC,GAAA;EAAL,OAAA,EAJO,IAIP,CAHA,YAGA,EAAA,QAAA,GAAA,OAAA,GAAA,SAAA,GAAA,WAAA,GAAA,SAAA,CAAA,GAAA,IAAA,CAAK,oBAAL,EAAA,YAAA,GAAA,YAAA,CAAA,GACA,QADA,CACS,IADT,CACc,oBADd,EAAA,YAAA,GAAA,YAAA,CAAA,CAAA;CACc;AAAL,KAGD,oBAHC,CAAA,wBAIa,2BAJb,GAKT,2BALS,CAAA,GAMT,aANS,CAMK,eANL,CAAA,GAAA;EAAT,OAAA,EAAA;IAAQ,OAAA,EAQC,cARD;EAGA,CAAA;CACc;AACtB,uCAAA,GAAA,EAAA;AACc,0CAAA,GAAA,EAAA;AAAd,8CAAA,GAAA,EAAA;AAES,uCAAA,GAAA,EAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-graphql",
3
- "version": "0.1.290",
3
+ "version": "0.1.292",
4
4
  "type": "module",
5
5
  "description": "A Powerlines plugin to generate project code from GraphQL schemas.",
6
6
  "repository": {
@@ -55,7 +55,7 @@
55
55
  "default": "./dist/index.mjs"
56
56
  }
57
57
  },
58
- "./package.json": "./package.json",
58
+ "./*": "./*",
59
59
  "./types": {
60
60
  "require": {
61
61
  "types": "./dist/types/index.d.cts",
@@ -95,14 +95,14 @@
95
95
  "@stryke/types": "^0.10.39",
96
96
  "defu": "^6.1.4",
97
97
  "jiti": "^2.6.1",
98
- "powerlines": "^0.38.56"
98
+ "powerlines": "^0.39.0"
99
99
  },
100
100
  "devDependencies": {
101
101
  "@graphql-codegen/plugin-helpers": "^6.1.0",
102
- "@powerlines/plugin-plugin": "^0.12.240",
103
- "@types/node": "^25.3.0"
102
+ "@powerlines/plugin-plugin": "^0.12.242",
103
+ "@types/node": "^25.3.2"
104
104
  },
105
105
  "publishConfig": { "access": "public" },
106
106
  "types": "./dist/index.d.cts",
107
- "gitHead": "256020b11a6afd9decac143ca57eaba68d102906"
107
+ "gitHead": "0dcb16f054b8a69915b074578e6d4dfa3ecc1529"
108
108
  }
@@ -1 +0,0 @@
1
- {"version":3,"file":"chunk-POXTJ6GF.mjs","names":[],"sources":["../../../../../../../../../../node_modules/.pnpm/@storm-software+config-tools@1.189.9_magicast@0.5.2/node_modules/@storm-software/config-tools/dist/chunk-POXTJ6GF.js"],"sourcesContent":["// src/types.ts\nvar LogLevel = {\n SILENT: 0,\n FATAL: 10,\n ERROR: 20,\n WARN: 30,\n SUCCESS: 35,\n INFO: 40,\n DEBUG: 60,\n TRACE: 70,\n ALL: 100\n};\nvar LogLevelLabel = {\n SILENT: \"silent\",\n FATAL: \"fatal\",\n ERROR: \"error\",\n WARN: \"warn\",\n SUCCESS: \"success\",\n INFO: \"info\",\n DEBUG: \"debug\",\n TRACE: \"trace\",\n ALL: \"all\"\n};\n\nexport {\n LogLevel,\n LogLevelLabel\n};\n"],"x_google_ignoreList":[0],"mappings":";AAYA,IAAI,gBAAgB;CAClB,QAAQ;CACR,OAAO;CACP,OAAO;CACP,MAAM;CACN,SAAS;CACT,MAAM;CACN,OAAO;CACP,OAAO;CACP,KAAK;CACN"}