@gradio/client 1.17.0 → 1.17.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @gradio/client
2
2
 
3
+ ## 1.17.1
4
+
5
+ ### Fixes
6
+
7
+ - [#11709](https://github.com/gradio-app/gradio/pull/11709) [`48f1dcf`](https://github.com/gradio-app/gradio/commit/48f1dcf58cd6437daa03a8cf1c9942aae2cec421) - Fix output paths for the @gradio/client browser build. Thanks @pngwn!
8
+
3
9
  ## 1.17.0
4
10
 
5
11
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/client",
3
- "version": "1.17.0",
3
+ "version": "1.17.1",
4
4
  "description": "Gradio API client",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/vite.config.js CHANGED
@@ -19,8 +19,7 @@ export default defineConfig(({ mode }) => {
19
19
  lib: {
20
20
  entry: "src/index.ts",
21
21
  formats: ["es"],
22
- fileName: (format) =>
23
- isBrowserBuild ? `browser.${format}.js` : `index.${format}.js`
22
+ fileName: isBrowserBuild ? `browser` : `index`
24
23
  },
25
24
  rollupOptions: {
26
25
  input: "src/index.ts",
Binary file
File without changes