@graphql-codegen/cli 2.11.5 → 3.0.0-alpha-20220819140438-ad9091489

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/cjs/codegen.js CHANGED
@@ -153,9 +153,7 @@ async function executeCodegen(input) {
153
153
  const generateTasks = Object.keys(generates).map(filename => {
154
154
  const outputConfig = generates[filename];
155
155
  const hasPreset = !!outputConfig.preset;
156
- const title = hasPreset
157
- ? `Generate to ${filename} (using EXPERIMENTAL preset "${outputConfig.preset}")`
158
- : `Generate ${filename}`;
156
+ const title = `Generate to ${filename}`;
159
157
  return {
160
158
  title,
161
159
  task: (_, subTask) => {
package/cjs/config.js CHANGED
@@ -114,7 +114,7 @@ function buildOptions() {
114
114
  },
115
115
  w: {
116
116
  alias: 'watch',
117
- describe: 'Watch for changes and execute generation automatically. You can also specify a glob expreession for custom watch list.',
117
+ describe: 'Watch for changes and execute generation automatically. You can also specify a glob expression for custom watch list.',
118
118
  coerce: (watch) => {
119
119
  if (watch === 'false') {
120
120
  return false;
package/esm/codegen.js CHANGED
@@ -149,9 +149,7 @@ export async function executeCodegen(input) {
149
149
  const generateTasks = Object.keys(generates).map(filename => {
150
150
  const outputConfig = generates[filename];
151
151
  const hasPreset = !!outputConfig.preset;
152
- const title = hasPreset
153
- ? `Generate to ${filename} (using EXPERIMENTAL preset "${outputConfig.preset}")`
154
- : `Generate ${filename}`;
152
+ const title = `Generate to ${filename}`;
155
153
  return {
156
154
  title,
157
155
  task: (_, subTask) => {
package/esm/config.js CHANGED
@@ -107,7 +107,7 @@ export function buildOptions() {
107
107
  },
108
108
  w: {
109
109
  alias: 'watch',
110
- describe: 'Watch for changes and execute generation automatically. You can also specify a glob expreession for custom watch list.',
110
+ describe: 'Watch for changes and execute generation automatically. You can also specify a glob expression for custom watch list.',
111
111
  coerce: (watch) => {
112
112
  if (watch === 'false') {
113
113
  return false;
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@graphql-codegen/cli",
3
- "version": "2.11.5",
3
+ "version": "3.0.0-alpha-20220819140438-ad9091489",
4
4
  "peerDependencies": {
5
5
  "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
6
6
  },
7
7
  "dependencies": {
8
- "@graphql-codegen/core": "2.6.1",
8
+ "@graphql-codegen/core": "2.6.2",
9
9
  "@graphql-codegen/plugin-helpers": "^2.6.2",
10
10
  "@graphql-tools/apollo-engine-loader": "^7.3.6",
11
11
  "@graphql-tools/code-file-loader": "^7.3.1",