-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
13 changed files
with
156 additions
and
36 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
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
with: | ||
ref: 'main' | ||
fetch-depth: 0 # fetch all commits history to create the changelog | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
token: ${{ secrets.GH_TOKEN }} | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
|
@@ -47,7 +47,7 @@ jobs: | |
|
||
- name: Make the release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: | | ||
# When all commits since the latest major tag should be added to the changelog, use --git.tagExclude='*[-]*' | ||
|
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 |
---|---|---|
|
@@ -17,6 +17,5 @@ test/typescript/*.js | |
test/typescript/*.map | ||
# VS Code stuff | ||
**/typings/** | ||
**/.vscode/** | ||
|
||
.npmrc |
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,5 @@ | ||
{ | ||
"standard.enable": true, | ||
"standard.autoFixOnSave": true, | ||
"editor.defaultFormatter": "standard.vscode-standard" | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 +1,7 @@ | ||
{ | ||
"name": "mqtt", | ||
"description": "A library for the MQTT protocol", | ||
"version": "5.0.0-beta.1", | ||
"version": "5.0.0-beta.2", | ||
"contributors": [ | ||
"Adam Rudd <[email protected]>", | ||
"Matteo Collina <[email protected]> (https://github.com/mcollina)", | ||
|
@@ -123,6 +123,7 @@ | |
"mkdirp": "^0.5.1", | ||
"mocha": "^9.2.0", | ||
"mqtt-connection": "^4.0.0", | ||
"mqtt-level-store": "^3.1.0", | ||
"nyc": "^15.0.1", | ||
"pre-commit": "^1.2.2", | ||
"release-it": "^15.11.0", | ||
|
@@ -133,8 +134,7 @@ | |
"standard": "^16.0.4", | ||
"tape": "^5.5.2", | ||
"terser": "^5.14.2", | ||
"typescript": "^4.5.5", | ||
"mqtt-level-store": "^3.1.0" | ||
"typescript": "^4.5.5" | ||
}, | ||
"standard": { | ||
"env": [ | ||
|
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.