Nathan Whitaker
|
4338be6c6d
|
fix(cli): Overwrite existing bin entries in node_modules (#24123)
Previously we warned on unix and didn't touch them on windows, now we
unconditionally overwrite them. This matches what npm does.
|
2024-06-12 17:14:58 -07:00 |
|
Marvin Hagemeister
|
3c3076a84c
|
fix(task): always use npm for npm run with flags (#24028)
|
2024-05-29 20:16:35 +00:00 |
|
Bartek Iwańczuk
|
92a8d09e49
|
fix(npm): set up node_modules/.bin/ entries for package that provide bin entrypoints (#23496)
Closes https://github.com/denoland/deno/issues/23036
---------
Co-authored-by: Nathan Whitaker <nathan@deno.com>
|
2024-05-23 23:43:38 +00:00 |
|
David Sherret
|
143ea4759f
|
feat(task): run npm run commands with Deno more often (#23794)
Closes #23036
|
2024-05-23 15:39:48 +00:00 |
|
David Sherret
|
9795637724
|
fix(task): do not error if node_modules folder not exists (#23920)
Revealed https://github.com/denoland/deno/issues/23919
Closes #23914
|
2024-05-21 16:12:14 -04:00 |
|
David Sherret
|
263b6b971d
|
fix(task): regression where npx <command> sometimes couldn't find command (#23730)
Closes https://github.com/denoland/deno/issues/23724
|
2024-05-09 03:16:44 +00:00 |
|
David Sherret
|
695f314a91
|
feat(task): support running npm binary commands in deno.json (#23478)
npm binary commands like `vite` from a `node_modules/.bin` folder will
now execute when defined in a deno.json
Closes https://github.com/denoland/deno/issues/23477
|
2024-04-20 20:13:46 -04:00 |
|
Nathan Whitaker
|
2dc37f411e
|
feat(task): Task description in the form of comments (#23101)
Closes #22786.
TLDR;
```jsonc
{
"tasks": {
// Some comment
//
// describing what the task does
"dev": "deno run -A --watch main.ts"
}
}
```
```bash
deno task
```
![Screenshot 2024-03-27 at 1 43
49 PM](https://github.com/denoland/deno/assets/17734409/7a14da8c-8e63-45ba-9bfb-590d250b56a9)
|
2024-03-27 14:14:27 -07:00 |
|