mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-13 11:57:29 +08:00
setup npm-previews of all packages (#9118)
* add workflow * fix pkg jsons * workflow name * add changeset * fix * add changeset * fix build command --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
parent
474102a8b4
commit
e1c404da11
66
.changeset/soft-breads-say.md
Normal file
66
.changeset/soft-breads-say.md
Normal file
@ -0,0 +1,66 @@
|
||||
---
|
||||
"@gradio/accordion": patch
|
||||
"@gradio/annotatedimage": patch
|
||||
"@gradio/atoms": patch
|
||||
"@gradio/audio": patch
|
||||
"@gradio/box": patch
|
||||
"@gradio/build": patch
|
||||
"@gradio/button": patch
|
||||
"@gradio/chatbot": patch
|
||||
"@gradio/checkbox": patch
|
||||
"@gradio/checkboxgroup": patch
|
||||
"@gradio/client": patch
|
||||
"@gradio/code": patch
|
||||
"@gradio/colorpicker": patch
|
||||
"@gradio/column": patch
|
||||
"@gradio/core": patch
|
||||
"@gradio/dataframe": patch
|
||||
"@gradio/dataset": patch
|
||||
"@gradio/datetime": patch
|
||||
"@gradio/downloadbutton": patch
|
||||
"@gradio/dropdown": patch
|
||||
"@gradio/fallback": patch
|
||||
"@gradio/file": patch
|
||||
"@gradio/fileexplorer": patch
|
||||
"@gradio/form": patch
|
||||
"@gradio/gallery": patch
|
||||
"@gradio/group": patch
|
||||
"@gradio/highlightedtext": patch
|
||||
"@gradio/html": patch
|
||||
"@gradio/icons": patch
|
||||
"@gradio/image": patch
|
||||
"@gradio/imageeditor": patch
|
||||
"@gradio/json": patch
|
||||
"@gradio/label": patch
|
||||
"@gradio/markdown": patch
|
||||
"@gradio/model3d": patch
|
||||
"@gradio/multimodaltextbox": patch
|
||||
"@gradio/nativeplot": patch
|
||||
"@gradio/number": patch
|
||||
"@gradio/paramviewer": patch
|
||||
"@gradio/plot": patch
|
||||
"@gradio/radio": patch
|
||||
"@gradio/row": patch
|
||||
"@gradio/simpledropdown": patch
|
||||
"@gradio/simpleimage": patch
|
||||
"@gradio/simpletextbox": patch
|
||||
"@gradio/slider": patch
|
||||
"@gradio/spa": patch
|
||||
"@gradio/state": patch
|
||||
"@gradio/statustracker": patch
|
||||
"@gradio/tabitem": patch
|
||||
"@gradio/tabs": patch
|
||||
"@gradio/textbox": patch
|
||||
"@gradio/theme": patch
|
||||
"@gradio/timer": patch
|
||||
"@gradio/tooltip": patch
|
||||
"@gradio/upload": patch
|
||||
"@gradio/uploadbutton": patch
|
||||
"@gradio/utils": patch
|
||||
"@gradio/video": patch
|
||||
"@gradio/wasm": patch
|
||||
"gradio": patch
|
||||
"gradio_test": patch
|
||||
---
|
||||
|
||||
feat:setup npm-previews of all packages
|
54
.github/workflows/npm-previews.yml
vendored
Normal file
54
.github/workflows/npm-previews.yml
vendored
Normal file
@ -0,0 +1,54 @@
|
||||
name: "npm"
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
CI: true
|
||||
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "1"
|
||||
NODE_OPTIONS: "--max-old-space-size=4096"
|
||||
|
||||
concurrency:
|
||||
group: "${{ github.event.pull_request.number }}-${{ github.ref_name }}-${{ github.workflow }}"
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
changes:
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
name: "changes"
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
should_run: ${{ steps.changes.outputs.should_run }}
|
||||
sha: ${{ steps.changes.outputs.sha }}
|
||||
pr_number: ${{ steps.changes.outputs.pr_number }}
|
||||
source_branch: ${{ steps.changes.outputs.source_branch }}
|
||||
source_repo: ${{ steps.changes.outputs.source_repo }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: "gradio-app/gradio/.github/actions/changes@main"
|
||||
id: changes
|
||||
with:
|
||||
filter: "js"
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
preview:
|
||||
permissions:
|
||||
contents: read
|
||||
name: npm-previews
|
||||
runs-on: ubuntu-22.04
|
||||
needs: changes
|
||||
if: needs.changes.outputs.should_run == 'true'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: install dependencies
|
||||
uses: "gradio-app/gradio/.github/actions/install-frontend-deps@main"
|
||||
with:
|
||||
always_install_pnpm: true
|
||||
skip_build: true
|
||||
- name: build client
|
||||
run: pnpm --filter @gradio/client --filter @gradio/wasm --filter @gradio/preview build
|
||||
- name: publish npm previews
|
||||
run: pnpx pkg-pr-new publish './js/*' './client/js' --comment=off
|
@ -39,5 +39,10 @@
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
},
|
||||
"main_changeset": true
|
||||
"main_changeset": true,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "client/js"
|
||||
}
|
||||
}
|
||||
|
@ -3,5 +3,6 @@
|
||||
"version": "1.3.0",
|
||||
"description": "",
|
||||
"python": "true",
|
||||
"main_changeset": true
|
||||
"main_changeset": true,
|
||||
"private": true
|
||||
}
|
||||
|
@ -19,5 +19,10 @@
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/accordion"
|
||||
}
|
||||
}
|
||||
|
@ -22,5 +22,10 @@
|
||||
"@gradio/utils": "workspace:^",
|
||||
"@gradio/client": "workspace:^",
|
||||
"@gradio/wasm": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/annotatedimage"
|
||||
}
|
||||
}
|
||||
|
@ -10,5 +10,10 @@
|
||||
"@gradio/utils": "workspace:^",
|
||||
"@gradio/icons": "workspace:^"
|
||||
},
|
||||
"main_changeset": true
|
||||
"main_changeset": true,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/atoms"
|
||||
}
|
||||
}
|
||||
|
@ -33,5 +33,10 @@
|
||||
"./shared": "./shared/index.ts",
|
||||
"./base": "./static/StaticAudio.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/audio"
|
||||
}
|
||||
}
|
||||
|
@ -13,5 +13,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@gradio/atoms": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/box"
|
||||
}
|
||||
}
|
||||
|
@ -15,5 +15,10 @@
|
||||
"esbuild": "^0.21.0",
|
||||
"svelte-i18n": "^3.6.0"
|
||||
},
|
||||
"main_changeset": true
|
||||
"main_changeset": true,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/build"
|
||||
}
|
||||
}
|
||||
|
@ -19,5 +19,10 @@
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/button"
|
||||
}
|
||||
}
|
||||
|
@ -34,5 +34,10 @@
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/chatbot"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/checkbox"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/checkboxgroup"
|
||||
}
|
||||
}
|
||||
|
@ -43,5 +43,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/code"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/colorpicker"
|
||||
}
|
||||
}
|
||||
|
@ -16,5 +16,10 @@
|
||||
"@gradio/preview": "workspace:^",
|
||||
"@gradio/statustracker": "workspace:^",
|
||||
"@gradio/utils": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/column"
|
||||
}
|
||||
}
|
||||
|
@ -74,5 +74,10 @@
|
||||
"./package.json": "./package.json",
|
||||
".": "./index.ts"
|
||||
},
|
||||
"main": "./index.ts"
|
||||
"main": "./index.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/core"
|
||||
}
|
||||
}
|
||||
|
@ -32,5 +32,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/dataframe"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/dataset"
|
||||
}
|
||||
}
|
||||
|
@ -21,5 +21,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/datetime"
|
||||
}
|
||||
}
|
||||
|
@ -19,5 +19,10 @@
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/downloadbutton"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/dropdown"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/fallback"
|
||||
}
|
||||
}
|
||||
|
@ -24,5 +24,10 @@
|
||||
".": "./Index.svelte",
|
||||
"./example": "./Example.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/file"
|
||||
}
|
||||
}
|
||||
|
@ -25,5 +25,10 @@
|
||||
".": "./Index.svelte",
|
||||
"./example": "./Example.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/fileexplorer"
|
||||
}
|
||||
}
|
||||
|
@ -19,5 +19,10 @@
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/form"
|
||||
}
|
||||
}
|
||||
|
@ -26,5 +26,10 @@
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json",
|
||||
"./base": "./shared/Gallery.svelte"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/gallery"
|
||||
}
|
||||
}
|
||||
|
@ -13,5 +13,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/group"
|
||||
}
|
||||
}
|
||||
|
@ -21,5 +21,10 @@
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/highlightedtext"
|
||||
}
|
||||
}
|
||||
|
@ -21,5 +21,10 @@
|
||||
"./base": "./Index.svelte",
|
||||
"./example": "./Example.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/html"
|
||||
}
|
||||
}
|
||||
|
@ -6,5 +6,11 @@
|
||||
"main": "src/index.ts",
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"main_changeset": true
|
||||
"private": false,
|
||||
"main_changeset": true,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/icons"
|
||||
}
|
||||
}
|
||||
|
@ -29,5 +29,10 @@
|
||||
"./example": "./Example.svelte",
|
||||
"./base": "./shared/ImagePreview.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/image"
|
||||
}
|
||||
}
|
||||
|
@ -28,5 +28,10 @@
|
||||
".": "./Index.svelte",
|
||||
"./example": "./Example.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/imageeditor"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/json"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/label"
|
||||
}
|
||||
}
|
||||
|
@ -31,5 +31,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/markdown"
|
||||
}
|
||||
}
|
||||
|
@ -29,5 +29,10 @@
|
||||
".": "./Index.svelte",
|
||||
"./example": "./Example.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/model3D"
|
||||
}
|
||||
}
|
||||
|
@ -25,5 +25,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/multimodaltextbox"
|
||||
}
|
||||
}
|
||||
|
@ -24,5 +24,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/nativeplot"
|
||||
}
|
||||
}
|
||||
|
@ -19,5 +19,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/number"
|
||||
}
|
||||
}
|
||||
|
@ -21,5 +21,10 @@
|
||||
"devDependencies": {
|
||||
"@types/prismjs": "^1.26.3",
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/paramviewer"
|
||||
}
|
||||
}
|
||||
|
@ -27,5 +27,10 @@
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json",
|
||||
"./base": "./shared/Plot.svelte"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/plot"
|
||||
}
|
||||
}
|
||||
|
@ -5,7 +5,7 @@
|
||||
"type": "module",
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"private": false,
|
||||
"private": true,
|
||||
"main_changeset": true,
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
@ -13,5 +13,10 @@
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {}
|
||||
"devDependencies": {},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/preview/test/test/frontend"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/radio"
|
||||
}
|
||||
}
|
||||
|
@ -15,5 +15,10 @@
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/row"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/simpledropdown"
|
||||
}
|
||||
}
|
||||
|
@ -28,5 +28,10 @@
|
||||
"./example": "./Example.svelte",
|
||||
"./base": "./shared/ImagePreview.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/simpleimage"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/simpletextbox"
|
||||
}
|
||||
}
|
||||
|
@ -19,5 +19,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/slider"
|
||||
}
|
||||
}
|
||||
|
@ -37,5 +37,10 @@
|
||||
"workerDirectory": "public"
|
||||
},
|
||||
"main_changeset": true,
|
||||
"main": "./src/Index.svelte"
|
||||
"main": "./src/Index.svelte",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/spa"
|
||||
}
|
||||
}
|
||||
|
@ -10,5 +10,10 @@
|
||||
"exports": {
|
||||
".": "./Index.svelte",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/state"
|
||||
}
|
||||
}
|
||||
|
@ -23,5 +23,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/statustracker"
|
||||
}
|
||||
}
|
||||
|
@ -18,5 +18,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/tabitem"
|
||||
}
|
||||
}
|
||||
|
@ -17,5 +17,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/tabs"
|
||||
}
|
||||
}
|
||||
|
@ -21,5 +21,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/textbox"
|
||||
}
|
||||
}
|
||||
|
@ -10,5 +10,10 @@
|
||||
"scripts": {
|
||||
"generate": "pollen -c src/pollen.config.cjs"
|
||||
},
|
||||
"main_changeset": true
|
||||
"main_changeset": true,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/theme"
|
||||
}
|
||||
}
|
||||
|
@ -16,5 +16,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/timer"
|
||||
}
|
||||
}
|
||||
|
@ -6,5 +6,10 @@
|
||||
"main": "src/index.ts",
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"main_changeset": true
|
||||
"main_changeset": true,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/tooltip"
|
||||
}
|
||||
}
|
||||
|
@ -16,5 +16,10 @@
|
||||
"main_changeset": true,
|
||||
"exports": {
|
||||
".": "./src/index.ts"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/upload"
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,10 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gradio/preview": "workspace:^"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/uploadbutton"
|
||||
}
|
||||
}
|
||||
|
@ -10,5 +10,10 @@
|
||||
"@gradio/theme": "workspace:^",
|
||||
"svelte-i18n": "^3.6.0"
|
||||
},
|
||||
"main_changeset": true
|
||||
"main_changeset": true,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/utils"
|
||||
}
|
||||
}
|
||||
|
@ -30,5 +30,10 @@
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"main": "index.ts",
|
||||
"main_changeset": true
|
||||
"main_changeset": true,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/video"
|
||||
}
|
||||
}
|
||||
|
@ -28,5 +28,10 @@
|
||||
"dependencies": {
|
||||
"@types/path-browserify": "^1.0.0",
|
||||
"path-browserify": "^1.0.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gradio-app/gradio.git",
|
||||
"directory": "js/wasm"
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user