Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 840 Bytes

File metadata and controls

53 lines (37 loc) · 840 Bytes

How to develop

Setup

Nix

  1. Install Nix package manager
  2. Run nix develop or direnv allow
  3. You can use development tasks
> nix develop
(prepared shell)

Tasks

> makers help
> Tools

---

check - ...
help - ...

> makers setup
added 438 packages, and audited 439 packages in 6s

> makers check
...tests, typechecks, linters...

See also scripts for tasks details.

REPL

pnpm run repl

Welcome to Node.js v20.5.1.
Type ".help" for more information.

> // You can use `import()` function, not `import statement`.
> const { info, isDebug, debug } = await import('@actions/core');
> isDebug()
false

> // Utils can be loaded
> const { readableDuration } = await import('./src/wait.ts');
> readableDuration(4200)
'about 4 seconds'