Skip to content

Commit e6df816

Browse files
chore(deps): update dev deps (#69)
1 parent 3a1706d commit e6df816

16 files changed

+3654
-2868
lines changed

.eslintrc.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
"parserOptions": {
2323
"project": "./tsconfig.lint.json"
2424
},
25-
"rules": {}
25+
"rules": {
26+
"@typescript-eslint/no-extra-semi": "error",
27+
"no-extra-semi": "off"
28+
}
2629
},
2730
{
2831
"files": [
@@ -32,7 +35,10 @@
3235
"extends": [
3336
"plugin:@nx/javascript"
3437
],
35-
"rules": {}
38+
"rules": {
39+
"@typescript-eslint/no-extra-semi": "error",
40+
"no-extra-semi": "off"
41+
}
3642
},
3743
{
3844
"files": [

.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,36 @@ on:
44
push:
55
branches:
66
- master
7-
- '*.x'
7+
- "*.x"
88
paths-ignore:
9-
- '**.md'
9+
- "**.md"
1010

1111
pull_request:
1212
branches:
1313
- master
14-
- '*.x'
14+
- "*.x"
1515
paths-ignore:
16-
- '**.md'
16+
- "**.md"
1717

1818
workflow_dispatch:
1919
inputs:
2020
publish:
21-
description: 'Publish 🚀'
21+
description: "Publish 🚀"
2222
required: false
2323
type: boolean
2424
default: false
2525
force-prerelease:
26-
description: 'Force Pre-release'
26+
description: "Force Pre-release"
2727
required: false
2828
type: boolean
2929
default: true
3030

3131
jobs:
3232
package:
3333
name: Package
34-
uses: sketch7/.github/.github/workflows/node-lib.yml@master
34+
uses: sketch7/.github/.github/workflows/node-lib.yml@node-libs-v1
3535
with:
36-
node-version: '18'
36+
node-version: "18"
3737
publishable: ${{ contains(fromJSON('["develop", "master", "workflow"]'), github.ref_name) || endsWith(github.ref_name, '.x') || github.event.inputs.publish == 'true' }}
3838
force-preid: ${{ github.event.inputs.force-prerelease == 'true' }}
3939
secrets:

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,6 @@ testem.log
3737
# System Files
3838
.DS_Store
3939
Thumbs.db
40+
41+
.nx/cache
42+
.nx/workspace-data

.prettierignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Add files here to ignore them from prettier formatting
22
/dist
3-
/coverage
3+
/coverage
4+
/.nx/cache
5+
/.nx/workspace-data

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [5.0.1](https://github.com/sketch7/signalr-client/compare/5.0.0...5.0.1) (2023-09-11)
2+
3+
### Refactor
4+
5+
- **hub connection:** convert `openConnection` `retryWhen` (deprecated) to `retry`
6+
17
## [5.0.0](https://github.com/sketch7/signalr-client/compare/4.1.0...5.0.0) (2023-09-08)
28

39
### Features

nx.json

+12-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,18 @@
11
{
22
"$schema": "./node_modules/nx/schemas/nx-schema.json",
3-
"affected": {
4-
"defaultBase": "master"
5-
},
6-
"tasksRunnerOptions": {
7-
"default": {
8-
"runner": "nx/tasks-runners/default",
9-
"options": {
10-
"cacheableOperations": ["build", "lint", "test", "e2e"]
11-
}
12-
}
13-
},
143
"targetDefaults": {
154
"build": {
165
"dependsOn": ["^build"],
17-
"inputs": ["production", "^production"]
6+
"inputs": ["production", "^production"],
7+
"cache": true
188
},
19-
"lint": {
20-
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/.eslintignore"]
9+
"@nx/vite:test": {
10+
"inputs": ["default", "^production"],
11+
"cache": true
2112
},
22-
"test": {
23-
"inputs": ["default", "^production"]
13+
"@nx/eslint:lint": {
14+
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/.eslintignore"],
15+
"cache": true
2416
}
2517
},
2618
"namedInputs": {
@@ -32,5 +24,7 @@
3224
"!{projectRoot}/tsconfig.spec.json"
3325
],
3426
"sharedGlobals": []
35-
}
36-
}
27+
},
28+
"useInferencePlugins": false,
29+
"defaultBase": "master"
30+
}

0 commit comments

Comments
 (0)