houdini 0.18.0 → 0.18.1
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/build/cmd-cjs/index.js +6 -4
- package/build/cmd-esm/index.js +6 -4
- package/build/codegen-cjs/index.js +4 -2
- package/build/codegen-esm/index.js +4 -2
- package/build/lib-cjs/index.js +4 -2
- package/build/lib-esm/index.js +4 -2
- package/build/runtime-cjs/cache/cache.js +4 -2
- package/build/runtime-esm/cache/cache.js +4 -2
- package/build/test-cjs/index.js +4 -2
- package/build/test-esm/index.js +4 -2
- package/build/vite-cjs/index.js +4 -2
- package/build/vite-esm/index.js +4 -2
- package/package.json +3 -3
package/build/cmd-cjs/index.js
CHANGED
|
@@ -68868,10 +68868,12 @@ var CacheInternal = class {
|
|
|
68868
68868
|
this.lists = lists;
|
|
68869
68869
|
this.cache = cache;
|
|
68870
68870
|
this.lifetimes = lifetimes;
|
|
68871
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
68871
68872
|
try {
|
|
68872
|
-
|
|
68873
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
68874
|
+
this._disabled = false;
|
|
68875
|
+
}
|
|
68873
68876
|
} catch {
|
|
68874
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
68875
68877
|
}
|
|
68876
68878
|
}
|
|
68877
68879
|
setConfig(config2) {
|
|
@@ -76772,8 +76774,8 @@ async function updatePackageJSON(targetPath) {
|
|
|
76772
76774
|
}
|
|
76773
76775
|
packageJSON.devDependencies = {
|
|
76774
76776
|
...packageJSON.devDependencies,
|
|
76775
|
-
houdini: "^0.18.
|
|
76776
|
-
"houdini-svelte": "^0.18.
|
|
76777
|
+
houdini: "^0.18.1",
|
|
76778
|
+
"houdini-svelte": "^0.18.1",
|
|
76777
76779
|
graphql: "^15.8.0"
|
|
76778
76780
|
};
|
|
76779
76781
|
await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -68874,10 +68874,12 @@ var CacheInternal = class {
|
|
|
68874
68874
|
this.lists = lists;
|
|
68875
68875
|
this.cache = cache;
|
|
68876
68876
|
this.lifetimes = lifetimes;
|
|
68877
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
68877
68878
|
try {
|
|
68878
|
-
|
|
68879
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
68880
|
+
this._disabled = false;
|
|
68881
|
+
}
|
|
68879
68882
|
} catch {
|
|
68880
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
68881
68883
|
}
|
|
68882
68884
|
}
|
|
68883
68885
|
setConfig(config2) {
|
|
@@ -76777,8 +76779,8 @@ async function updatePackageJSON(targetPath) {
|
|
|
76777
76779
|
}
|
|
76778
76780
|
packageJSON.devDependencies = {
|
|
76779
76781
|
...packageJSON.devDependencies,
|
|
76780
|
-
houdini: "^0.18.
|
|
76781
|
-
"houdini-svelte": "^0.18.
|
|
76782
|
+
houdini: "^0.18.1",
|
|
76783
|
+
"houdini-svelte": "^0.18.1",
|
|
76782
76784
|
graphql: "^15.8.0"
|
|
76783
76785
|
};
|
|
76784
76786
|
await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
|
|
@@ -54594,10 +54594,12 @@ var CacheInternal = class {
|
|
|
54594
54594
|
this.lists = lists;
|
|
54595
54595
|
this.cache = cache;
|
|
54596
54596
|
this.lifetimes = lifetimes;
|
|
54597
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
54597
54598
|
try {
|
|
54598
|
-
|
|
54599
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
54600
|
+
this._disabled = false;
|
|
54601
|
+
}
|
|
54599
54602
|
} catch {
|
|
54600
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
54601
54603
|
}
|
|
54602
54604
|
}
|
|
54603
54605
|
setConfig(config2) {
|
|
@@ -54593,10 +54593,12 @@ var CacheInternal = class {
|
|
|
54593
54593
|
this.lists = lists;
|
|
54594
54594
|
this.cache = cache;
|
|
54595
54595
|
this.lifetimes = lifetimes;
|
|
54596
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
54596
54597
|
try {
|
|
54597
|
-
|
|
54598
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
54599
|
+
this._disabled = false;
|
|
54600
|
+
}
|
|
54598
54601
|
} catch {
|
|
54599
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
54600
54602
|
}
|
|
54601
54603
|
}
|
|
54602
54604
|
setConfig(config2) {
|
package/build/lib-cjs/index.js
CHANGED
|
@@ -62117,10 +62117,12 @@ var CacheInternal = class {
|
|
|
62117
62117
|
this.lists = lists;
|
|
62118
62118
|
this.cache = cache;
|
|
62119
62119
|
this.lifetimes = lifetimes;
|
|
62120
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
62120
62121
|
try {
|
|
62121
|
-
|
|
62122
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
62123
|
+
this._disabled = false;
|
|
62124
|
+
}
|
|
62122
62125
|
} catch {
|
|
62123
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
62124
62126
|
}
|
|
62125
62127
|
}
|
|
62126
62128
|
setConfig(config) {
|
package/build/lib-esm/index.js
CHANGED
|
@@ -62079,10 +62079,12 @@ var CacheInternal = class {
|
|
|
62079
62079
|
this.lists = lists;
|
|
62080
62080
|
this.cache = cache;
|
|
62081
62081
|
this.lifetimes = lifetimes;
|
|
62082
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
62082
62083
|
try {
|
|
62083
|
-
|
|
62084
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
62085
|
+
this._disabled = false;
|
|
62086
|
+
}
|
|
62084
62087
|
} catch {
|
|
62085
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
62086
62088
|
}
|
|
62087
62089
|
}
|
|
62088
62090
|
setConfig(config) {
|
|
@@ -136,10 +136,12 @@ class CacheInternal {
|
|
|
136
136
|
this.lists = lists;
|
|
137
137
|
this.cache = cache;
|
|
138
138
|
this.lifetimes = lifetimes;
|
|
139
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
139
140
|
try {
|
|
140
|
-
|
|
141
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
142
|
+
this._disabled = false;
|
|
143
|
+
}
|
|
141
144
|
} catch {
|
|
142
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
143
145
|
}
|
|
144
146
|
}
|
|
145
147
|
setConfig(config) {
|
|
@@ -112,10 +112,12 @@ class CacheInternal {
|
|
|
112
112
|
this.lists = lists;
|
|
113
113
|
this.cache = cache;
|
|
114
114
|
this.lifetimes = lifetimes;
|
|
115
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
115
116
|
try {
|
|
116
|
-
|
|
117
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
118
|
+
this._disabled = false;
|
|
119
|
+
}
|
|
117
120
|
} catch {
|
|
118
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
119
121
|
}
|
|
120
122
|
}
|
|
121
123
|
setConfig(config) {
|
package/build/test-cjs/index.js
CHANGED
|
@@ -54599,10 +54599,12 @@ var CacheInternal = class {
|
|
|
54599
54599
|
this.lists = lists;
|
|
54600
54600
|
this.cache = cache;
|
|
54601
54601
|
this.lifetimes = lifetimes;
|
|
54602
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
54602
54603
|
try {
|
|
54603
|
-
|
|
54604
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
54605
|
+
this._disabled = false;
|
|
54606
|
+
}
|
|
54604
54607
|
} catch {
|
|
54605
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
54606
54608
|
}
|
|
54607
54609
|
}
|
|
54608
54610
|
setConfig(config2) {
|
package/build/test-esm/index.js
CHANGED
|
@@ -54595,10 +54595,12 @@ var CacheInternal = class {
|
|
|
54595
54595
|
this.lists = lists;
|
|
54596
54596
|
this.cache = cache;
|
|
54597
54597
|
this.lifetimes = lifetimes;
|
|
54598
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
54598
54599
|
try {
|
|
54599
|
-
|
|
54600
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
54601
|
+
this._disabled = false;
|
|
54602
|
+
}
|
|
54600
54603
|
} catch {
|
|
54601
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
54602
54604
|
}
|
|
54603
54605
|
}
|
|
54604
54606
|
setConfig(config2) {
|
package/build/vite-cjs/index.js
CHANGED
|
@@ -65021,10 +65021,12 @@ var CacheInternal = class {
|
|
|
65021
65021
|
this.lists = lists;
|
|
65022
65022
|
this.cache = cache;
|
|
65023
65023
|
this.lifetimes = lifetimes;
|
|
65024
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
65024
65025
|
try {
|
|
65025
|
-
|
|
65026
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
65027
|
+
this._disabled = false;
|
|
65028
|
+
}
|
|
65026
65029
|
} catch {
|
|
65027
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
65028
65030
|
}
|
|
65029
65031
|
}
|
|
65030
65032
|
setConfig(config3) {
|
package/build/vite-esm/index.js
CHANGED
|
@@ -65016,10 +65016,12 @@ var CacheInternal = class {
|
|
|
65016
65016
|
this.lists = lists;
|
|
65017
65017
|
this.cache = cache;
|
|
65018
65018
|
this.lifetimes = lifetimes;
|
|
65019
|
+
this._disabled = typeof globalThis.window === "undefined";
|
|
65019
65020
|
try {
|
|
65020
|
-
|
|
65021
|
+
if (process.env.HOUDINI_TEST === "true") {
|
|
65022
|
+
this._disabled = false;
|
|
65023
|
+
}
|
|
65021
65024
|
} catch {
|
|
65022
|
-
this._disabled = typeof globalThis.window === "undefined";
|
|
65023
65025
|
}
|
|
65024
65026
|
}
|
|
65025
65027
|
setConfig(config3) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "houdini",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.1",
|
|
4
4
|
"description": "The disappearing GraphQL clients",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"@types/minimatch": "^5.1.2",
|
|
22
22
|
"@types/node": "^18.7.23",
|
|
23
23
|
"prettier": "^2.5.1",
|
|
24
|
-
"rollup": "^
|
|
24
|
+
"rollup": "^3.7.4",
|
|
25
25
|
"turbo": "^1.5.4",
|
|
26
|
-
"vite": "^
|
|
26
|
+
"vite": "^4.0.1",
|
|
27
27
|
"vitest": "^0.23.4",
|
|
28
28
|
"scripts": "^1.0.0"
|
|
29
29
|
},
|