File tree 10 files changed +39
-33
lines changed
10 files changed +39
-33
lines changed Original file line number Diff line number Diff line change 6
6
- Clone the repository using ` git clone https://github.com/YOUR_USERNAME/vue-advanced-chat `
7
7
- Go inside your cloned repository and run ` npm install `
8
8
- Go inside the ` demo ` folder and run ` npm install `
9
- - If you want to test using Firebase, you can follow the steps [ here] ( https://github.com/antoine92190 /vue-advanced-chat#using-with-firestore )
9
+ - If you want to test using Firebase, you can follow the steps [ here] ( https://github.com/advanced-chat /vue-advanced-chat#using-with-firestore )
10
10
- You can use the code in ` demo/src/ChatContainer.vue ` or write your own code to test the chat
11
11
- Run ` npm run serve ` inside the ` demo ` folder to open the demo app
12
12
- You need to uncomment ` import { register } from './../../src/lib/index.js' ` to use the chat code locally and see your modifications live
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ A clear and concise description of what the bug is.
15
15
## Steps to reproduce
16
16
17
17
Describe us how we could reproduce the bug you're trying to report
18
- You can also use https://github.com/antoine92190 /vue-advanced-chat-sandbox and share the source code to reproduce the bug.
18
+ You can also use https://github.com/advanced-chat /vue-advanced-chat-sandbox and share the source code to reproduce the bug.
19
19
20
20
Example:
21
21
Original file line number Diff line number Diff line change 5
5
branches :
6
6
- main
7
7
8
+ permissions :
9
+ contents : write
10
+
8
11
jobs :
9
12
release :
10
13
runs-on : ubuntu-latest
@@ -15,13 +18,16 @@ jobs:
15
18
fetch-depth : 0
16
19
17
20
- name : Setup Node.js
18
- uses : actions/setup-node@v2
21
+ uses : actions/setup-node@v4
19
22
with :
20
- node-version : ' 16.x '
23
+ node-version : 18
21
24
22
25
- name : Install dependencies
23
26
run : npm install
24
27
28
+ - name : Build distribution
29
+ run : npm run build
30
+
25
31
- name : Release
26
32
env :
27
33
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ plugins :
2
+ - " @semantic-release/commit-analyzer"
3
+ - " @semantic-release/release-notes-generator"
4
+ - - "@semantic-release/changelog"
5
+ - changelogFile : " CHANGELOG.md"
6
+ - - "@semantic-release/npm"
7
+ - npmPublish : true
8
+ - - "@semantic-release/github"
9
+ - assets :
10
+ - " dist/**"
11
+ - " LICENSE"
12
+ # enable this when GITHUB_TOKEN with the appropriate permissions is available
13
+ # - - "@semantic-release/git"
14
+ # - assets:
15
+ # - "CHANGELOG.md"
16
+ # message: "chore(release): prepare ${nextRelease.version} [skip ci]"
17
+
18
+ branches :
19
+ - name : " main"
20
+
21
+ tagFormat : ${version}
Original file line number Diff line number Diff line change 1
1
<p align =" center " >
2
- <a href =" https://github.com/advanced-chat/vue-advanced-chat/actions/workflows/build .yml " ><img src =" https://img.shields.io/github/actions/workflow/status/advanced-chat/vue-advanced-chat/build .yml?branch=master " ></a >
2
+ <a href =" https://github.com/advanced-chat/vue-advanced-chat/actions/workflows/release .yml " ><img src =" https://img.shields.io/github/actions/workflow/status/advanced-chat/vue-advanced-chat/release .yml?branch=main " ></a >
3
3
<a href =" https://www.npmjs.com/package/vue-advanced-chat " ><img src =" https://img.shields.io/npm/dm/vue-advanced-chat.svg " ></a >
4
4
<a href =" https://www.npmjs.com/package/vue-advanced-chat " ><img src =" https://img.shields.io/bundlephobia/minzip/vue-advanced-chat " ></a >
5
5
<a href =" https://www.npmjs.com/package/vue-advanced-chat " ><img src =" https://img.shields.io/npm/v/vue-advanced-chat.svg " ></a >
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ git init
10
10
git add -A
11
11
git commit -m ' deploy'
12
12
13
- git push -f
[email protected] :
antoine92190 /vue-advanced-chat.git main:gh-pages
13
+ git push -f
[email protected] :
advanced-chat /vue-advanced-chat.git main:gh-pages
14
14
15
- cd -
15
+ cd -
Original file line number Diff line number Diff line change 13
13
"reset" : " rm -rf node_modules && rm -rf package-lock.json && npm i" ,
14
14
"reset-all" : " npm run reset && cd .. && npm run reset" ,
15
15
"gpages" : " sh deploy.sh" ,
16
- "latest" : " npm i https://github.com/antoine92190 /vue-advanced-chat/tarball/master"
16
+ "latest" : " npm i https://github.com/advanced-chat /vue-advanced-chat/tarball/master"
17
17
},
18
18
"dependencies" : {
19
19
"firebase" : " 9.4.0" ,
Original file line number Diff line number Diff line change 33
33
Dark
34
34
</button >
35
35
<button class =" button-github" >
36
- <a href =" https://github.com/antoine92190 /vue-advanced-chat" >
36
+ <a href =" https://github.com/advanced-chat /vue-advanced-chat" >
37
37
<img src =" @/assets/github.svg" />
38
38
</a >
39
39
</button >
Original file line number Diff line number Diff line change 20
20
],
21
21
"repository" : {
22
22
"type" : " git" ,
23
- "url" : " git+https://github.com/antoine92190 /vue-advanced-chat.git"
23
+ "url" : " git+https://github.com/advanced-chat /vue-advanced-chat.git"
24
24
},
25
25
"bugs" : {
26
- "url" : " https://github.com/antoine92190 /vue-advanced-chat/issues"
26
+ "url" : " https://github.com/advanced-chat /vue-advanced-chat/issues"
27
27
},
28
- "homepage" : " https://github.com/antoine92190 /vue-advanced-chat#readme" ,
28
+ "homepage" : " https://github.com/advanced-chat /vue-advanced-chat#readme" ,
29
29
"main" : " ./dist/vue-advanced-chat.umd.js" ,
30
30
"module" : " ./dist/vue-advanced-chat.es.js" ,
31
31
"unpkg" : " ./dist/vue-advanced-chat.umd.js" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments