Skip to content

Commit

Permalink
chore(deps): update dev deps (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenlautier authored Sep 11, 2024
1 parent 3a1706d commit e6df816
Show file tree
Hide file tree
Showing 16 changed files with 3,654 additions and 2,868 deletions.
10 changes: 8 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
"parserOptions": {
"project": "./tsconfig.lint.json"
},
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": [
Expand All @@ -32,7 +35,10 @@
"extends": [
"plugin:@nx/javascript"
],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": [
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,36 @@ on:
push:
branches:
- master
- '*.x'
- "*.x"
paths-ignore:
- '**.md'
- "**.md"

pull_request:
branches:
- master
- '*.x'
- "*.x"
paths-ignore:
- '**.md'
- "**.md"

workflow_dispatch:
inputs:
publish:
description: 'Publish 🚀'
description: "Publish 🚀"
required: false
type: boolean
default: false
force-prerelease:
description: 'Force Pre-release'
description: "Force Pre-release"
required: false
type: boolean
default: true

jobs:
package:
name: Package
uses: sketch7/.github/.github/workflows/node-lib.yml@master
uses: sketch7/.github/.github/workflows/node-lib.yml@node-libs-v1
with:
node-version: '18'
node-version: "18"
publishable: ${{ contains(fromJSON('["develop", "master", "workflow"]'), github.ref_name) || endsWith(github.ref_name, '.x') || github.event.inputs.publish == 'true' }}
force-preid: ${{ github.event.inputs.force-prerelease == 'true' }}
secrets:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ testem.log
# System Files
.DS_Store
Thumbs.db

.nx/cache
.nx/workspace-data
4 changes: 3 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Add files here to ignore them from prettier formatting
/dist
/coverage
/coverage
/.nx/cache
/.nx/workspace-data
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [5.0.1](https://github.com/sketch7/signalr-client/compare/5.0.0...5.0.1) (2023-09-11)

### Refactor

- **hub connection:** convert `openConnection` `retryWhen` (deprecated) to `retry`

## [5.0.0](https://github.com/sketch7/signalr-client/compare/4.1.0...5.0.0) (2023-09-08)

### Features
Expand Down
30 changes: 12 additions & 18 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,18 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"affected": {
"defaultBase": "master"
},
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e"]
}
}
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
"inputs": ["production", "^production"],
"cache": true
},
"lint": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/.eslintignore"]
"@nx/vite:test": {
"inputs": ["default", "^production"],
"cache": true
},
"test": {
"inputs": ["default", "^production"]
"@nx/eslint:lint": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/.eslintignore"],
"cache": true
}
},
"namedInputs": {
Expand All @@ -32,5 +24,7 @@
"!{projectRoot}/tsconfig.spec.json"
],
"sharedGlobals": []
}
}
},
"useInferencePlugins": false,
"defaultBase": "master"
}
Loading

0 comments on commit e6df816

Please sign in to comment.