houdini 1.2.20 → 1.2.21
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
CHANGED
|
@@ -76161,12 +76161,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
76161
76161
|
}
|
|
76162
76162
|
packageJSON2.devDependencies = {
|
|
76163
76163
|
...packageJSON2.devDependencies,
|
|
76164
|
-
houdini: "^1.2.
|
|
76164
|
+
houdini: "^1.2.21"
|
|
76165
76165
|
};
|
|
76166
76166
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
76167
76167
|
packageJSON2.devDependencies = {
|
|
76168
76168
|
...packageJSON2.devDependencies,
|
|
76169
|
-
"houdini-svelte": "^1.2.
|
|
76169
|
+
"houdini-svelte": "^1.2.21"
|
|
76170
76170
|
};
|
|
76171
76171
|
} else {
|
|
76172
76172
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -76166,12 +76166,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
76166
76166
|
}
|
|
76167
76167
|
packageJSON2.devDependencies = {
|
|
76168
76168
|
...packageJSON2.devDependencies,
|
|
76169
|
-
houdini: "^1.2.
|
|
76169
|
+
houdini: "^1.2.21"
|
|
76170
76170
|
};
|
|
76171
76171
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
76172
76172
|
packageJSON2.devDependencies = {
|
|
76173
76173
|
...packageJSON2.devDependencies,
|
|
76174
|
-
"houdini-svelte": "^1.2.
|
|
76174
|
+
"houdini-svelte": "^1.2.21"
|
|
76175
76175
|
};
|
|
76176
76176
|
} else {
|
|
76177
76177
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/vite-cjs/index.js
CHANGED
|
@@ -77273,6 +77273,12 @@ function Plugin(opts = {}) {
|
|
|
77273
77273
|
manifest,
|
|
77274
77274
|
adapterPath: "../$houdini/plugins/houdini-react/units/render/config.js"
|
|
77275
77275
|
});
|
|
77276
|
+
if (fs_exports.existsSync(path_exports.join(config3.projectRoot, "public"))) {
|
|
77277
|
+
await fs_exports.recursiveCopy(
|
|
77278
|
+
path_exports.join(config3.projectRoot, "public"),
|
|
77279
|
+
viteConfig.build.outDir
|
|
77280
|
+
);
|
|
77281
|
+
}
|
|
77276
77282
|
},
|
|
77277
77283
|
async buildStart(args) {
|
|
77278
77284
|
for (const plugin2 of config3.plugins) {
|
package/build/vite-esm/index.js
CHANGED
|
@@ -77268,6 +77268,12 @@ function Plugin(opts = {}) {
|
|
|
77268
77268
|
manifest,
|
|
77269
77269
|
adapterPath: "../$houdini/plugins/houdini-react/units/render/config.js"
|
|
77270
77270
|
});
|
|
77271
|
+
if (fs_exports.existsSync(path_exports.join(config3.projectRoot, "public"))) {
|
|
77272
|
+
await fs_exports.recursiveCopy(
|
|
77273
|
+
path_exports.join(config3.projectRoot, "public"),
|
|
77274
|
+
viteConfig.build.outDir
|
|
77275
|
+
);
|
|
77276
|
+
}
|
|
77271
77277
|
},
|
|
77272
77278
|
async buildStart(args) {
|
|
77273
77279
|
for (const plugin2 of config3.plugins) {
|