@graphql-codegen/cli 3.2.2-alpha-20230306171806-2b36f099d → 3.2.2-alpha-20230306192325-1ee2ad4db
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/config.js +1 -3
- package/esm/config.js +1 -3
- package/package.json +1 -1
package/cjs/config.js
CHANGED
|
@@ -47,9 +47,7 @@ function customLoader(ext) {
|
|
|
47
47
|
return cosmiconfig_1.defaultLoaders['.js'](filepath, content);
|
|
48
48
|
}
|
|
49
49
|
if (ext === 'ts') {
|
|
50
|
-
const jitiLoader = (0, jiti_1.default)(
|
|
51
|
-
interopDefault: true,
|
|
52
|
-
});
|
|
50
|
+
const jitiLoader = (0, jiti_1.default)('', { interopDefault: true });
|
|
53
51
|
return jitiLoader(filepath);
|
|
54
52
|
}
|
|
55
53
|
};
|
package/esm/config.js
CHANGED
|
@@ -42,9 +42,7 @@ function customLoader(ext) {
|
|
|
42
42
|
return defaultLoaders['.js'](filepath, content);
|
|
43
43
|
}
|
|
44
44
|
if (ext === 'ts') {
|
|
45
|
-
const jitiLoader = jiti(
|
|
46
|
-
interopDefault: true,
|
|
47
|
-
});
|
|
45
|
+
const jitiLoader = jiti('', { interopDefault: true });
|
|
48
46
|
return jitiLoader(filepath);
|
|
49
47
|
}
|
|
50
48
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-codegen/cli",
|
|
3
|
-
"version": "3.2.2-alpha-
|
|
3
|
+
"version": "3.2.2-alpha-20230306192325-1ee2ad4db",
|
|
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
|
},
|