@messenger-box/chat-ui 10.0.2-alpha.2 → 10.0.2-alpha.3
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/CHANGELOG.md +4 -0
- package/package.json +4 -4
- package/rollup.config.mjs +55 -22
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [10.0.2-alpha.3](https://github.com/CDEBase/messenger-box/compare/v10.0.2-alpha.2...v10.0.2-alpha.3) (2025-02-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @messenger-box/chat-ui
|
|
9
|
+
|
|
6
10
|
## [10.0.2-alpha.2](https://github.com/CDEBase/messenger-box/compare/v10.0.2-alpha.1...v10.0.2-alpha.2) (2025-02-10)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @messenger-box/chat-ui
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@messenger-box/chat-ui",
|
|
3
|
-
"version": "10.0.2-alpha.
|
|
3
|
+
"version": "10.0.2-alpha.3",
|
|
4
4
|
"description": "Account browser",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"@chatscope/chat-ui-kit-react": "^1.10.1",
|
|
44
44
|
"@chatscope/chat-ui-kit-styles": "^1.4.0",
|
|
45
45
|
"@chatscope/use-chat": "^3.1.1",
|
|
46
|
-
"@messenger-box/core": "10.0.2-alpha.
|
|
47
|
-
"@messenger-box/platform-client": "10.0.2-alpha.
|
|
46
|
+
"@messenger-box/core": "10.0.2-alpha.3",
|
|
47
|
+
"@messenger-box/platform-client": "10.0.2-alpha.3",
|
|
48
48
|
"date-fns": "^2.28.0",
|
|
49
49
|
"date-fns-tz": "^1.3.3",
|
|
50
50
|
"emoji-mart": "^3.0.1",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"typescript": {
|
|
77
77
|
"definition": "lib/index.d.ts"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "7a74f6c42293a66a3f8406aac63d80a9c03fed6d"
|
|
80
80
|
}
|
package/rollup.config.mjs
CHANGED
|
@@ -1,28 +1,61 @@
|
|
|
1
|
+
|
|
1
2
|
import { createRollupConfig } from '../../../rollup.config.base.mjs';
|
|
2
3
|
|
|
3
4
|
const additionalPlugins = [];
|
|
4
5
|
// Use the createRollupConfig function to merge the base and specific configurations
|
|
5
|
-
export default
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
],
|
|
10
|
-
plugins: [
|
|
11
|
-
// Spread in additional plugins specific to this config
|
|
12
|
-
...additionalPlugins,
|
|
13
|
-
],
|
|
14
|
-
output: [
|
|
6
|
+
export default (commandLineArgs) => {
|
|
7
|
+
const isWatchMode = commandLineArgs.watch;
|
|
8
|
+
return [
|
|
9
|
+
createRollupConfig(
|
|
15
10
|
{
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
11
|
+
input: ['src/index.ts'],
|
|
12
|
+
plugins: [
|
|
13
|
+
// Spread in additional plugins specific to this config
|
|
14
|
+
...additionalPlugins,
|
|
15
|
+
],
|
|
16
|
+
output: [
|
|
17
|
+
{
|
|
18
|
+
dir: 'lib',
|
|
19
|
+
format: 'es',
|
|
20
|
+
name: 'chat-ui',
|
|
21
|
+
compact: true,
|
|
22
|
+
exports: 'named',
|
|
23
|
+
sourcemap: true,
|
|
24
|
+
preserveModules: true,
|
|
25
|
+
chunkFileNames: '[name]-[hash].[format].js',
|
|
26
|
+
globals: { react: 'React' },
|
|
27
|
+
},
|
|
28
|
+
],
|
|
25
29
|
},
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
];
|
|
30
|
+
isWatchMode,
|
|
31
|
+
),
|
|
32
|
+
];
|
|
33
|
+
};
|
|
34
|
+
// import { createRollupConfig } from '../../../rollup.config.base.mjs';
|
|
35
|
+
|
|
36
|
+
// const additionalPlugins = [];
|
|
37
|
+
// // Use the createRollupConfig function to merge the base and specific configurations
|
|
38
|
+
// export default [
|
|
39
|
+
// createRollupConfig({
|
|
40
|
+
// input: [
|
|
41
|
+
// 'src/index.ts',
|
|
42
|
+
// ],
|
|
43
|
+
// plugins: [
|
|
44
|
+
// // Spread in additional plugins specific to this config
|
|
45
|
+
// ...additionalPlugins,
|
|
46
|
+
// ],
|
|
47
|
+
// output: [
|
|
48
|
+
// {
|
|
49
|
+
// dir: 'lib',
|
|
50
|
+
// format: 'es',
|
|
51
|
+
// name: 'chakra-ui-inbox',
|
|
52
|
+
// compact: true,
|
|
53
|
+
// exports: 'named',
|
|
54
|
+
// sourcemap: true,
|
|
55
|
+
// preserveModules: true,
|
|
56
|
+
// chunkFileNames: '[name]-[hash].[format].js',
|
|
57
|
+
// globals: { react: 'React' },
|
|
58
|
+
// },
|
|
59
|
+
// ],
|
|
60
|
+
// }),
|
|
61
|
+
// ];
|