Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dev deps #1

Merged
merged 3 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Loading