David Sveningsson

Results 15 issues of David Sveningsson

**Bug report** Declared global namespaces is stripped or does not contain the necessary imports. Not sure if I just cant get the options right of if there is something else...

Bug

Adds a new option `transformCommits` to postprocess commit list before release notes are generated. While it is possible to create a custom reader it might not always be desirable to...

Allows users to specify their own custom default preset. In my opinion the strength of `mrm` is not the default tasks but the ability to create your own presets and...

Allows a shorter syntax for scoped packages. Instead of: * `@mycompany/mrm-preset` * `@mycompany/mrm-preset-unicorn` we can now write: * `@mycompany` (resolves to `@mycompany/mrm-preset`) * `@mycompany/unicorn` (resolves to `@mycompany/mrm-preset-unicorn`, this one actually...

Some of the fields in `package.json` is present in `package-lock.json`, e.g `engines`. It would be useful to have a helper to update the lockfile as well: ```js const pkg =...

When using the builtin `yaml` helpers the anchors are not preserved. ## Steps to reproduce Given a task such as: ```js const { yaml } = require("mrm-core"); module.exports = function...

When using the builtin yaml helpers the formattin of the file is not preserved. While it technically doesn't matter how the file is formatted it helps humans to read and...

I have a `package.json` similar to: ```js { "scripts": { "prepare": "husky install" }, "devDependencies": { "husky": "^5.2.0" } } ``` Running `npm install --prod` (or `NODE_ENV=production`) will only install...

wontfix

# What / Why Adds an option to set or disable delimiter used when splitting sections into nested objets. While splitting sections can be useful in some cases it also...