Add js/lite/package.json (#4718)

This commit is contained in:
Yuichiro Tachibana (Tsuchiya) 2023-06-29 21:25:29 +09:00 committed by GitHub
parent ab5d1ea0de
commit 927c176ef6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -31,7 +31,7 @@ jobs:
- name: install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm --filter @gradio/client build
run: pnpm --filter @gradio/client --filter @gradio/lite build
- name: create and publish versions
id: changesets
uses: changesets/action@v1

15
js/lite/package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "@gradio/lite",
"version": "0.1.0",
"description": "Serverless Gradio",
"type": "module",
"main": "dist/index.js",
"author": "Gradio Team",
"license": "Apache-2.0",
"files": [
"dist"
],
"scripts": {
"build": "pnpm --filter @gradio/app build:lite"
}
}