@graphql-codegen/cli 4.0.1 → 5.0.0-alpha-20230707093646-96773d928
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/utils/watcher.js +9 -1
- package/esm/utils/watcher.js +9 -1
- package/package.json +7 -2
package/cjs/utils/watcher.js
CHANGED
|
@@ -34,7 +34,15 @@ const createWatcher = (initialContext, onNext) => {
|
|
|
34
34
|
let watcherSubscription;
|
|
35
35
|
const runWatcher = async (abortSignal) => {
|
|
36
36
|
const watchDirectory = await findHighestCommonDirectory(allAffirmativePatterns);
|
|
37
|
-
|
|
37
|
+
// Try to load the parcel watcher, but don't fail if it's not available.
|
|
38
|
+
let parcelWatcher;
|
|
39
|
+
try {
|
|
40
|
+
parcelWatcher = await Promise.resolve().then(() => tslib_1.__importStar(require('@parcel/watcher')));
|
|
41
|
+
}
|
|
42
|
+
catch (err) {
|
|
43
|
+
log(`Parcel watcher not found. To use this feature, please make sure to provide @parcel/watcher as a peer dependency.`);
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
38
46
|
(0, debugging_js_1.debugLog)(`[Watcher] Parcel watcher loaded...`);
|
|
39
47
|
let isShutdown = false;
|
|
40
48
|
const debouncedExec = (0, debounce_1.default)(() => {
|
package/esm/utils/watcher.js
CHANGED
|
@@ -30,7 +30,15 @@ export const createWatcher = (initialContext, onNext) => {
|
|
|
30
30
|
let watcherSubscription;
|
|
31
31
|
const runWatcher = async (abortSignal) => {
|
|
32
32
|
const watchDirectory = await findHighestCommonDirectory(allAffirmativePatterns);
|
|
33
|
-
|
|
33
|
+
// Try to load the parcel watcher, but don't fail if it's not available.
|
|
34
|
+
let parcelWatcher;
|
|
35
|
+
try {
|
|
36
|
+
parcelWatcher = await import('@parcel/watcher');
|
|
37
|
+
}
|
|
38
|
+
catch (err) {
|
|
39
|
+
log(`Parcel watcher not found. To use this feature, please make sure to provide @parcel/watcher as a peer dependency.`);
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
34
42
|
debugLog(`[Watcher] Parcel watcher loaded...`);
|
|
35
43
|
let isShutdown = false;
|
|
36
44
|
const debouncedExec = debounce(() => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-codegen/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-alpha-20230707093646-96773d928",
|
|
4
|
+
"peerDependenciesMeta": {
|
|
5
|
+
"@parcel/watcher": {
|
|
6
|
+
"optional": true
|
|
7
|
+
}
|
|
8
|
+
},
|
|
4
9
|
"peerDependencies": {
|
|
10
|
+
"@parcel/watcher": "^2.1.0",
|
|
5
11
|
"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
12
|
},
|
|
7
13
|
"dependencies": {
|
|
@@ -20,7 +26,6 @@
|
|
|
20
26
|
"@graphql-tools/prisma-loader": "^8.0.0",
|
|
21
27
|
"@graphql-tools/url-loader": "^8.0.0",
|
|
22
28
|
"@graphql-tools/utils": "^10.0.0",
|
|
23
|
-
"@parcel/watcher": "^2.1.0",
|
|
24
29
|
"@whatwg-node/fetch": "^0.8.0",
|
|
25
30
|
"chalk": "^4.1.0",
|
|
26
31
|
"cosmiconfig": "^8.1.3",
|