chomp
chomp copied to clipboard
'JS Make' - parallel task runner for the frontend ecosystem with a JS extension system.
```sh $ chomp --version (node:11625) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. (Use `node --trace-deprecation ...` to show where the warning was created) ```
I see `engine = 'node'` in some examples, but I'm not sure how to get a complete list of engines available in my compiled version of `chomp`. Is there a...
`npm install -g chomp` on ZSH doesn't result in the `chomp` command being available to a user. This is using `Node v16@latest`, via `nvm`. The symlink to chomp doesn't seem...
When defining dependencies, I want something along the lines of this: ``` deps = ['src/*.js', '!src/worker.js'] ``` Is that possible?
Here's what I'm trying: ```bash /workspaces/es-module-lexer # node --version v20.7.0 /workspaces/es-module-lexer # npm i -g chomp changed 147 packages in 1s 6 packages are looking for funding run `npm fund`...
I have a javascript file that uses ES module imports. I would like to "run" the JS file whenever it changes, or any of its imported dependencies. I can create...
Now that most of my own projects involve either running `chomp` or `chomp test`, it could be useful to have a VSCode plugin which can just run this command and...
In interpolation patterns, it could be useful to support a new modifier syntax for eg handling excludes in the target space: ``` dep = "./src/##.ts" targets = "lib/##[~(index|module)].js" ``` where...
We currently support replacement syntax like GitHub actions via `${{ }}` which currently is only supported in ENV, but could be extended to further strings. This replacement syntax currently only...
When running a large number of tasks, an error on a specific task can be hard to trace to the exact task which caused the error. We should more carefully...