Ruck release v5.0.0

Published .

Major

  • Removed TypeScript triple slash reference comments from Ruck modules that were originally intended to enable DOM types. Ruck projects now must have a Deno config file (deno.json or deno.jsonc), containing:

    {
      "compilerOptions": {
        "lib": [
          "dom",
          "dom.iterable",
          "dom.asynciterable",
          "deno.ns",
          "deno.unstable"
        ]
      }
    }

Patch

  • Updated dependencies.
  • Updated GitHub Actions CI config:
    • Updated actions/checkout to v3.
  • Implemented a deno.json Deno config file.