Skip to content

Commit

Permalink
chore: update package dependencies
Browse files Browse the repository at this point in the history
chore: fix lint

chore: update dependencies in package.json files

chore: update package

chore: upgrade demo

chore(deps): update dependency vue-tsc to ^1.8.27

chore: update dependencies and file paths

chore: renovate fix

chore: upgrade-lock
  • Loading branch information
productdevbook committed Apr 3, 2024
1 parent 607218b commit adf5a20
Show file tree
Hide file tree
Showing 16 changed files with 10,975 additions and 9,178 deletions.
35 changes: 29 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,39 @@ jobs:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4

- run: corepack enable
- uses: actions/setup-node@v3
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: pnpm
node-version: 20

- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false

- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Cache
uses: actions/cache@v4
with:
path: |
./.eslintcache
${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-cache
restore-keys: |
${{ runner.os }}-cache
- name: 📦 Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install

- name: 👀 Lint
run: pnpm lint
Expand Down
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<img src="https://img.shields.io/github/stars/productdevbookcom/chatwoot.svg?style=social&label=Star&maxAge=2592000" alt="Github Stars"> </a>
</p>


This module productdevbook team created.

> [ChatWoot](https://www.chatwoot.com/help-center) integration for [Vue](https://vuejs.org)
Expand Down Expand Up @@ -59,7 +58,6 @@ app.use(chatwoot)

- [▶️ &nbsp;Online playground](https://stackblitz.com/github/productdevbookcom/chatwoot/tree/main/demo/nuxt3)


```ts
export default defineNuxtConfig({
modules: [
Expand Down Expand Up @@ -114,15 +112,13 @@ const { isModalVisible, toggle, toggleBubbleVisibility, popoutChatWindow } = use
</template>
```


## Init Default

| Option | Type | Description | Default |
| -------------- | -------- | ----------------------------------------------------------------- | ------------------------ |
| websiteToken | `string` | The token given to you when you create a chat widget. | |
| baseUrl | `bool` | Your site's domain, as declared by you in Chatwoot's settings | `https://app.chatwoot.com` |


## useChatWoot

`useChatWoot()` accepts some
Expand All @@ -149,8 +145,6 @@ const { isModalVisible, toggle, toggleBubbleVisibility, popoutChatWindow } = use
</a>
</p>



## 💻 Development

- Clone this repository
Expand Down
8 changes: 2 additions & 6 deletions demo/nuxt3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@
"postinstall": "nuxt prepare"
},
"dependencies": {
"@productdevbook/chatwoot": "^1.3.0"
"@productdevbook/chatwoot": "^1.4.0"
},
"devDependencies": {
"nuxt": "^3.7.4"
},
"resolutions": {
"vite": "^4.4.12",
"vue": "^3.3.4"
"nuxt": "^3.11.1"
}
}
Loading

0 comments on commit adf5a20

Please sign in to comment.