Denon Versions Save

👀 Monitor any changes in your Deno application and automatically restart.

2.3.2

3 years ago

2.3.1

3 years ago

Sequential Scripts and Better Logging

Emergency patch to fix denon --init and denon --upgrade following the release of the deno registry v2. 📒 This patch has no changelog as the only fix committed was related to the issues with the new registry.

2.3.0

3 years ago

Sequential Scripts and Better Logging

Running sequential scripts is now very easy yet highly configurable. ⏩

{
  "$schema": "https://deno.land/x/denon/schema.json",
  "scripts": {
    "test": {
      "cmd": "deno lint --unstable && deno test",
      "desc": "test my project"
    }
  }
}

We also have implemented a clearer logger, with info for sequential scripts and more. ✍️

Changelog

Features

Bug Fixes

2.2.1

3 years ago

Deno stdlib breaking changes

Recent breaking changes introduced to deno stdlib have made many modules and CLIs unable to operate properly. This is a temporary solution put in place until the modules we depend on adopt the latest stdlib changes.

related #74

Changelog

Bug Fixes

  • temp fix for outdated dependencies in omelette (#74) (99d586dd608dc091297ff04646887dfc7439a56e)
  • :arrow_up: Updated std dependencies to 0.61.0 (60250e3ea8058e20afabffd9c1e4f915eec8463f)
  • README: export to import (d1c79cff38bb6b35b909c0f56c7378ae1922aa86)
  • examples: wrong version in configuration (391acc4f4326ef0c98d2684c87e1073189fffa4b)
  • schema: allow bolean as permissions (185f20d62ca336ddba04cc8cfc50a4f0c9d75e49)

2.2.0

4 years ago

Configuration templates

Now you have the ability of initialising different templates, downloading them directly from the web. 🌐 Also, in the spirit of deno decentralisation, we are launching on nest.land, you can find us at there. 🥚

Changelog

Features

Bug Fixes

  • add file:// resolve (bf64a29)
  • add log for config reader failiure (4b4df06)
  • bump deno stdlib (7096f33)
  • config.ts import resolve (63318dd)
  • denon.config.ts file:// is now correctly resolved (e29d18e)
  • permission and template fetching issue (66dc595), closes #61
  • remove net permission (4ac58ad)
  • update permissions (63735c2)

2.1.0

4 years ago

Configurable configurations

Now you can have more control over your configuration with the new denon.config.ts file support. You can modify the config dynamically based on your environment. 🎉 Also you don't have to restart denon to reload configuration, it now does that automagically. 🌟

Changelog

Features

  • add .ts config file option (be1456e), closes #56
  • add config template support (afbc934)
  • configuration reloading and opt-out watch (6ad9066)

Bug Fixes

2.0.0

4 years ago

Triceratops

Triceratops update is a complete rewrite on denon codebase. It has been redesigned to fit your project from prototyping to deployment.

The focus is now put on scripts that can be declared in the configuration file (we now also support YAML 🎉) and can be run as daemon with the cli by just calling their name.

denon can be also used as a drop-in replacement for the deno executable. You can simple call denon run --allow-net app.js and denon will monitor the process for you, restarting if you made any changes.

We also added the ability for denon to be included as a module to control the fine execution details. In fact the denon cli is completely implemented as if it included the denon module.

Changelog

  • Scripts creation
  • CLI improvements
  • Configuration file rework (JSON and YAML)
  • Added legacy file watcher to monitor files over network

1.9.2

4 years ago

Finally deno 1.0.0 has been released and this release adds support for it!

1.9.1

4 years ago

This release actually adds deno v1.0.0-rc1 support now that std v0.50.0 is released. Also fixes #30.

1.9.0

4 years ago

THIS RELEASE DOES NOT WORK DUE TO INCORRECT STD VERSIONING

This release adds deno v1.0.0-rc1 support and checking of required permissions before execution using the permissions standard module.