node-saku icon indicating copy to clipboard operation
node-saku copied to clipboard

Ⓜ️ Markdown-based task runner

Results 5 node-saku issues
Sort by recently updated
recently updated
newest added

Snyk has created this PR to upgrade action-selector from 1.0.1 to 1.0.2. ![merge advice](https://app.snyk.io/badges/merge-advice/?package_manager=yarn&package_name=action-selector&from_version=1.0.1&to_version=1.0.2&pr_id=f4685b78-60a7-4c1a-9e70-68ab2dba3e72) :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more...

```md # Usage ... # Tasks The followings are tasks for development. You can invoke them with `saku` command, such as `saku build` ## build > Builds the bundles npx...

:sparkles: feature

For example ```md # hello > Say hello > - NAME=john echo hello $NAME ``` and `saku hello` outputs `hello john`. (just idea)

:sparkles: feature

The quotes are not preserved when passed after `--` saku hello -- "hello world"

:bug: bug

```md # task:foo echo foo # task:bar echo bar # task:baz echo baz ``` Then `saku task:*` yields the following: ```console $ saku task:* + echo foo foo + echo...

:sparkles: feature