Skip to main content
Module

x/dmm/.github/release_drafter_config.yml

Lightweight Deno Module Manager
Latest
File
name-template: 'v$RESOLVED_VERSION'tag-template: 'v$RESOLVED_VERSION'
change-template: '- $TITLE (#$NUMBER)'
# Only add to the draft release when a PR has one of these labelsinclude-labels: - 'Type: Major' - 'Type: Minor' - 'Type: Patch' - 'Type: Chore'
# Here is how we determine what version the release would be, by using labels. Eg when "minor" is used, the drafter knows to bump up to a new minor versionversion-resolver: major: labels: - 'Type: Major' minor: labels: - 'Type: Minor' patch: labels: - 'Type: Patch' - 'Type: Chore' # allow our chore PR's to just be patches too default: patch
# What our release will look like. If no draft has been created, then this will be used, otherwise $CHANGES just gets addeddtemplate: | __Compatibility__
* Requires Deno v<DENO_VERSION> or higher * Uses Deno std@<STD_VERSION>
__Installing__
* Install dmm as a command: ``` $ deno install --allow-net='unpkg.com,x.nest.land,cdn.deno.land,api.deno.land,raw.githubusercontent.com,github.com,api.github.com' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v$RESOLVED_VERSION/mod.ts ``` * Run the `dmm` command: ``` $ dmm ```
__Updates__
$CHANGES