reachat 2.0.0-beta.1 → 2.0.0
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/dist/index.css +2718 -0
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reachat",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Chat UI for Building LLMs",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build-storybook": "storybook build",
|
|
7
|
-
"build": "npm run build:js && npm run build:docs",
|
|
7
|
+
"build": "npm run build:js && npm run build:styles && npm run build:docs",
|
|
8
8
|
"build:js": "vite build --mode library",
|
|
9
9
|
"build:docs": "node scripts/docs.js",
|
|
10
|
+
"build:styles": "npx @tailwindcss/cli -i ./src/index.css -o ./dist/index.css",
|
|
10
11
|
"lint": "eslint --ext js,ts,tsx",
|
|
11
12
|
"lint:fix": "eslint --ext js,ts,tsx --fix src",
|
|
12
13
|
"lint:prettier": "prettier --loglevel warn --write 'src/**/*.{ts,tsx,js,jsx}'",
|