Skip to content

Commit

Permalink
perf(config): clean should not clean shrinkwrap deps so rush cannot c…
Browse files Browse the repository at this point in the history
…alculate caches
  • Loading branch information
kamontat committed Dec 18, 2023
1 parent 7a6fe51 commit d8b52f3
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion common/reviews/api/equals.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
```ts

// @public
// @beta
export const checkType: (a: unknown, b: unknown) => boolean;

// Warning: (ae-forgotten-export) The symbol "ISettings" needs to be exported by the entry point index.d.ts
Expand Down
2 changes: 2 additions & 0 deletions packages/equals/src/equals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ const toBoolean = (v: EquivalentValue): boolean | undefined => {
* @param a - first input
* @param b - second input
* @returns true if first and second has a same type
*
* @beta
*/
export const checkType = (a: unknown, b: unknown): boolean => {
return typeof a === typeof b;
Expand Down
2 changes: 0 additions & 2 deletions packages/node-rig/profiles/default/config/heft.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@
"lib-amd",
"lib-system",
"lib-css",
"temp",
"dist",
".rush",
"rush-logs",
"*.log"
]
Expand Down
2 changes: 0 additions & 2 deletions packages/web-rig/profiles/default/config/heft.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@
"lib-amd",
"lib-system",
"lib-css",
"temp",
"dist",
".rush",
"rush-logs",
"*.log"
]
Expand Down
2 changes: 0 additions & 2 deletions packages/web-rig/profiles/pure-css/config/heft.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@
"lib-amd",
"lib-system",
"lib-css",
"temp",
"dist",
".rush",
"rush-logs",
"*.log"
]
Expand Down

0 comments on commit d8b52f3

Please sign in to comment.