Skip to content

Version 5.0.0

Choose a tag to compare

@jaydenseric jaydenseric released this 09 May 12:27
· 64 commits to main since this release

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.