From 12762fe16684d5e9b351cd8ca6aef1b47d4f39da Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Wed, 19 Oct 2022 00:07:20 +0800 Subject: [PATCH] chore: release cli and update config --- apps/cli/package.json | 2 +- client/web/.ministarrc.js | 6 +++++- client/web/package.json | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/cli/package.json b/apps/cli/package.json index 06c94239..fd28de9f 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -1,6 +1,6 @@ { "name": "tailchat-cli", - "version": "1.4.4", + "version": "1.4.5", "description": "A Command line interface of tailchat", "bin": { "tailchat": "./bin/cli" diff --git a/client/web/.ministarrc.js b/client/web/.ministarrc.js index c67cbffc..c9f9e707 100644 --- a/client/web/.ministarrc.js +++ b/client/web/.ministarrc.js @@ -9,7 +9,11 @@ const isDev = process.env.NODE_ENV === 'development'; module.exports = { externalDeps: [ 'react', - 'axios', // Use for some deps which will use axios and reduce bundle size + 'react-router', + 'axios', + 'styled-components', + 'zustand', + 'zustand/middleware/immer', ], rollupPlugins: ({ pluginName }) => [ copy({ diff --git a/client/web/package.json b/client/web/package.json index 4e795842..dd049d35 100644 --- a/client/web/package.json +++ b/client/web/package.json @@ -4,7 +4,7 @@ "main": "index.js", "repository": "https://github.com/msgbyte/tailchat.git", "author": "moonrailgun ", - "license": "GPLv3", + "license": "Apache-2.0", "private": true, "scripts": { "build": "cross-env NODE_ENV=production rimraf ./dist && pnpm plugins:all && pnpm build:webpack",