Kevin Van Lierde
Kevin Van Lierde
Currently only the end-user of a metalsmith build can choose to do post-processing on the build. Use cases: - Plugins like metalsmith-debug-ui add dynamically generated files to the build that...
To avoid the usecase at https://github.com/metalsmith/collections/issues/79#issuecomment-1027474334 the user could be given the option to transform the render context passed to a template. By default this would be (backwards-compatible): ```js function...
What happens when the `directory` option is set inside the `metalsmith.source()`, eg. ```js metalsmith .source('src') .use(layouts({ directory: 'src/layouts' })) // currently requires @metalsmith/remove? .use(remove('layouts')) ``` There is a limited set...
- new build with backup of previous build - m3u playlist generator CLI - managing unit test snapshots - express app - static API
### Context * openapi-response-validator version: 12.1.3 * Node version: 18.12.1 * Package type: module (native node ESM ending in `.js`) ### Bug ```js import OpenAPIResponseValidator from 'openapi-response-validator' const validator =...
Also added some minor TS typing. Not sure what you mean by "linting" as there are no scripts/ linting configs defined in the repo. I developed this on Windows and...
### Context * openapi-response-validator version: 12.1.3 * Node version: 18.12.1 * Package type: module (native node ESM ending in `.js`) ### Feature Allow access to response param in errorTransformer so...
Similar to the `:dirname` exception this would allow one to do for example: ```yaml prefix: nested/baseuri title: Hello world! permalink: :prefix/:title ``` and properly render to `nested/baseuri/hello-world`. However there are...
Currently the boolean is stringified to "true" for true or "" for false. It would be nicer to have the key name instead, so that when a file `index.md` has...
To help with post-processing with layouts, an option can be added that will result in stripping 4 or more leading spaces following a newline. Eleventy already has such an option....