Skip to content

Commit

Permalink
chore(task): Rename clean to lock
Browse files Browse the repository at this point in the history
Now `clean` only updates the lock file.
  • Loading branch information
5ouma committed Mar 9, 2024
1 parent 799df66 commit acd2371
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deps-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
id: deps
run: |
deno task update -w --summary=../title.txt --report=../body.md
deno task clean
deno task lock
- name: 🔍 Check the Result
id: result
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"fmt": { "exclude": ["LICENSE", ".github/**/*.md"] },
"test": { "include": ["src/", "test/"] },
"tasks": {
"clean": "deno cache --lock-write ./**/*.ts",
"gen": "deno run --allow-read --allow-write ./src/main.ts",
"lock": "deno cache --lock-write ./**/*.ts",
"test": "deno test --allow-read --allow-write",
"update": "deno run --allow-env --allow-read --allow-write --allow-run=git,deno --allow-net=deno.land https://deno.land/x/molt/cli.ts deno.json"
},
Expand Down

0 comments on commit acd2371

Please sign in to comment.