Skip to content

Commit a110705

Browse files
authored
Merge pull request #7 from ably/release/0.1.0
Release: Version 0.1.0
2 parents e075722 + 87b9bdd commit a110705

File tree

9 files changed

+31
-24
lines changed

9 files changed

+31
-24
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## [0.1.0](https://github.com/ably/ably-chat-react-ui-components/tree/0.1.0) (2025-07-14)
4+
5+
- Initial release of the Ably Chat React UI components.

examples/group-chat/package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/group-chat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"ably-chat-react-ui-components": "file:../../",
13+
"@ably/chat-react-ui-components": "file:../../",
1414
"@ably/chat": "^0.10.0",
1515
"react": "^19.0.0",
1616
"react-dom": "^19.0.0"

examples/group-chat/src/main.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import * as Ably from 'ably';
44
import React from 'react';
55
import ReactDOM from 'react-dom/client';
66
import './index.css';
7-
import 'ably-chat-react-ui-components/dist/style.css';
7+
import '@ably/chat-react-ui-components/dist/style.css';
88
import {
99
App,
1010
AvatarProvider,
1111
ChatSettingsProvider,
1212
ThemeProvider,
13-
} from 'ably-chat-react-ui-components';
13+
} from '@ably/chat-react-ui-components';
1414

1515
// Vite will replace this at build time
1616
const ABLY_API_KEY = import.meta.env.VITE_ABLY_API_KEY as string;

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@ably/chat-react-ui-components",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "A library of configurable components for use with @ably/chat",
55
"type": "module",
6-
"main": "./dist/ably-chat-react-ui-components.cjs",
7-
"module": "./dist/ably-chat-react-ui-components.js",
6+
"main": "./dist/ably/chat-react-ui-components.cjs",
7+
"module": "./dist/ably/chat-react-ui-components.js",
88
"types": "./dist/index.d.ts",
99
"exports": {
1010
".": {
1111
"types": "./dist/index.d.ts",
12-
"import": "./dist/ably-chat-react-ui-components.js",
13-
"require": "./dist/ably-chat-react-ui-components.cjs"
12+
"import": "./dist/ably/chat-react-ui-components.js",
13+
"require": "./dist/ably/chat-react-ui-components.cjs"
1414
},
1515
"./dist/style.css": "./dist/style.css"
1616
},

tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"src/stories/*.stories.tsx",
2828
".storybook/**/*",
2929
"dist",
30-
"node_modules"
31-
]
30+
"node_modules",
31+
"src/test/**/*",
32+
],
3233
}

tsconfig.test.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"include": [
44
"src/test/**/*"
55
],
6+
"exclude": [],
67
"compilerOptions": {
78
"types": ["vitest/globals", "@testing-library/jest-dom"]
89
}

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default defineConfig({
1919
lib: {
2020
entry: resolve(__dirname, 'src/index.ts'),
2121
name: 'AblyChatReactUIComponents',
22-
fileName: 'ably-chat-react-ui-components',
22+
fileName: 'ably/chat-react-ui-components',
2323
formats: ['es', 'cjs']
2424
},
2525
rollupOptions: {

0 commit comments

Comments
 (0)