Skip to content

Commit

Permalink
Merge pull request #20 from alchemisten/hotfix/fix-pipeline
Browse files Browse the repository at this point in the history
Merge branch 'hotfix/fix pipeline' into main
  • Loading branch information
call1800messiah authored Nov 7, 2023
2 parents 50e8cf5 + 6fd56c7 commit ec79112
Showing 1 changed file with 27 additions and 12 deletions.
39 changes: 27 additions & 12 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,30 @@
"affected": {
"defaultBase": "develop"
},
"implicitDependencies": {
"package.json": {
"dependencies": "*",
"devDependencies": "*"
},
".eslintrc.json": "*"
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"cache": true
"dependsOn": [
"^build"
],
"cache": true,
"inputs": [
"production",
"^production"
]
},
"lint": {
"cache": true,
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json"
]
},
"test": {
"cache": true,
"inputs": ["default", "^default"]
"inputs": [
"default",
"^default"
]
},
"e2e": {
"cache": true
Expand All @@ -44,5 +49,15 @@
}
}
},
"defaultProject": "logging-react-test"
"defaultProject": "logging-react-test",
"namedInputs": {
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"sharedGlobals": [],
"production": [
"default"
]
}
}

0 comments on commit ec79112

Please sign in to comment.