Skip to content

Commit

Permalink
v0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
raegen committed Jan 8, 2024
1 parent 4b912ac commit 1990dd8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@raegen/nx",
"description": "Github action for executing nx commands cached with @actions/cache",
"version": "0.2.5",
"version": "0.2.6",
"author": "raegen",
"type": "module",
"homepage": "https://github.com/raegen/nx",
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const targets = Array.from(
Object.values((await createProjectGraphAsync()).nodes)
.map(({ data }) =>
Object.keys(data.targets || {}).filter(
target => data.targets?.[target].cache
target => data.targets?.[target].cache !== false
)
)
.flat()
Expand Down

0 comments on commit 1990dd8

Please sign in to comment.