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",