Skip to content

Commit

Permalink
Merge pull request #4502 from iclanton/fix-caching
Browse files Browse the repository at this point in the history
Fix caching in a few projects.
  • Loading branch information
iclanton authored Jan 31, 2024
2 parents 2af9641 + 03e0f15 commit 41e1fbd
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// This file exists for caching purposes in the rushstack repo
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush-project.schema.json",

"operationSettings": [
{
"operationName": "_phase:build",
"outputFolderNames": ["dist"]
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"private": true,
"scripts": {
"build": "heft build --clean --storybook",
"_phase:build": "heft run --only build -- --clean",
"_phase:build": "heft run --only build -- --clean --storybook",
"_phase:test": ""
},
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"operationSettings": [
{
"operationName": "build",
"operationName": "_phase:build",
"outputFolderNames": ["lib", "dist"]
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"operationSettings": [
{
"operationName": "build",
"operationName": "_phase:build",
"outputFolderNames": ["lib", "dist"]
}
]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "",
"type": "none",
"packageName": "@rushstack/eslint-config"
}
],
"packageName": "@rushstack/eslint-config",
"email": "[email protected]"
}
2 changes: 1 addition & 1 deletion eslint/eslint-config/config/rush-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"operationSettings": [
{
"operationName": "build",
"operationName": "_phase:build",
"outputFolderNames": ["lib", "dist"]
}
]
Expand Down

0 comments on commit 41e1fbd

Please sign in to comment.