Skip to content

Commit

Permalink
chore(deps): run nx migrations from 17.2.8 to 18.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgavrusev committed May 18, 2024
1 parent ad69724 commit 21ad9db
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 20 deletions.
19 changes: 14 additions & 5 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@
"targetDefaults": {
"build": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
"dependsOn": [
"^build"
],
"inputs": [
"production",
"^production"
]
},
"lint": {
"@nx/eslint:lint": {
"cache": true,
"inputs": [
"default",
Expand All @@ -17,7 +22,10 @@
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"production": [
"default",
"!{projectRoot}/.eslintrc.json",
Expand All @@ -27,5 +35,6 @@
"!{projectRoot}/tools/**/*"
],
"sharedGlobals": []
}
},
"useInferencePlugins": false
}
62 changes: 47 additions & 15 deletions project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "node_modules/nx/schemas/project-schema.json",
"sourceRoot": "src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/rollup:rollup",
Expand Down Expand Up @@ -40,9 +41,8 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["./src", "{projectRoot}/package.json"]
"lintFilePatterns": ["{projectRoot}/src", "{projectRoot}/package.json"]
}
},
"test": {
Expand All @@ -64,17 +64,50 @@
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "revert", "section": "Reverts" },
{ "type": "docs", "section": "Documentation" },
{ "type": "style", "section": "Styles" },
{ "type": "chore", "section": "Miscellaneous Chores" },
{ "type": "refactor", "section": "Code Refactoring" },
{ "type": "test", "section": "Tests" },
{ "type": "build", "section": "Build System" },
{ "type": "ci", "section": "Continuous Integration" }
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "chore",
"section": "Miscellaneous Chores"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integration"
}
]
},
"commitMessageFormat": "chore: release version {version} [skip ci]"
Expand All @@ -95,6 +128,5 @@
},
"defaultConfiguration": "local"
}
},
"tags": []
}
}

0 comments on commit 21ad9db

Please sign in to comment.