-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
1,295 additions
and
954 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"ignore": ["nextjs-example"], | ||
"access": "public", | ||
"updateInternalDependencies": "patch", | ||
"baseBranch": "main", | ||
"bumpVersionsWithWorkspaceProtocolOnly": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# react-use-pylon in NextJS | ||
|
||
Replace `INTERCOM_APP_ID` with your Intercom app id. | ||
Replace `PYLON_APP_ID` with your Pylon app id. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
{ | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"pnpm": "^8.0.0" | ||
}, | ||
"scripts": { | ||
"dev": "turbo run dev --parallel --filter=react-use-pylon", | ||
"dev:examples": "turbo run dev --parallel --filter=*-example --filter=react-use-pylon", | ||
"test": "turbo run test", | ||
"build": "turbo run build", | ||
"lint": "turbo run lint", | ||
"lint:fix": "turbo run lint:fix", | ||
"clean": "turbo run clean && rm -rf node_modules", | ||
"release": "turbo run build --filter=react-use-pylon" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^5.50.0", | ||
"eslint": "^8.33.0", | ||
"eslint-config-prettier": "^8.6.0", | ||
"eslint-config-react-app": "^7.0.1", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"eslint-plugin-simple-import-sort": "^10.0.0", | ||
"prettier": "^2.8.3", | ||
"turbo": "^1.9.8" | ||
} | ||
} | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"pnpm": "^8.0.0" | ||
}, | ||
"scripts": { | ||
"dev": "turbo run dev --parallel --filter=react-use-pylon", | ||
"dev:examples": "turbo run dev --parallel --filter=*-example --filter=react-use-pylon", | ||
"test": "turbo run test", | ||
"build": "turbo run build", | ||
"lint": "turbo run lint", | ||
"lint:fix": "turbo run lint:fix", | ||
"clean": "turbo run clean && rm -rf node_modules", | ||
"changeset": "changeset", | ||
"release": "turbo run build --filter=react-use-pylon && changeset publish" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.27.1", | ||
"@typescript-eslint/eslint-plugin": "^5.62.0", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^8.10.0", | ||
"eslint-config-react-app": "^7.0.1", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"eslint-plugin-simple-import-sort": "^10.0.0", | ||
"prettier": "^2.8.8", | ||
"turbo": "^1.11.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +0,0 @@ | ||
# react-use-pylon | ||
|
||
## 5.3.0 | ||
|
||
### Minor Changes | ||
|
||
- 4aac5a9: Expose startChecklist method in usePylon hook | ||
|
||
## 5.2.0 | ||
|
||
### Minor Changes | ||
|
||
- 8eebbed: Add "showNews" method | ||
|
||
## 5.1.4 | ||
|
||
### Patch Changes | ||
|
||
- d86105a: Fix incompatible node engine version | ||
|
||
## 5.1.3 | ||
|
||
### Patch Changes | ||
|
||
- e89a073: Do not publish src folder to registry | ||
|
||
## 5.1.2 | ||
|
||
### Patch Changes | ||
|
||
- 5f4b6eb: Do not publish src folder to registry | ||
|
||
## 5.1.1 | ||
|
||
### Patch Changes | ||
|
||
- 5e7dd7e: Do not publish src folder to registry | ||
|
||
## 5.1.0 | ||
|
||
### Minor Changes | ||
|
||
- e30828d: Add "showSpace" method | ||
|
||
## 5.0.0 | ||
|
||
### Major Changes | ||
|
||
- 8f7ff67: Allow calling "boot" multiple times. Previously it was not possible to invoke "boot" more than once, because of a "isBooted" guard. This behaviour was not in line with the IntercomJS docs, so it has been removed | ||
|
||
## 4.1.0 | ||
|
||
### Minor Changes | ||
|
||
- 791c6ac: Extend API with `onUserEmailSupplied` event and `startSurvey` method | ||
|
||
## 4.0.0 | ||
|
||
### Major Changes | ||
|
||
- c8b050d: Update built target to es2017 | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.