Conversation
tmeijn
pushed a commit
to tmeijn/dotfiles
that referenced
this pull request
Feb 25, 2026
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [jackchuka/mdschema](https://github.com/jackchuka/mdschema) | minor | `v0.11.2` → `v0.12.3` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>jackchuka/mdschema (jackchuka/mdschema)</summary> ### [`v0.12.3`](https://github.com/jackchuka/mdschema/releases/tag/v0.12.3) [Compare Source](jackchuka/mdschema@v0.12.2...v0.12.3) #### What's Changed - fix(npm): include bin/cli.js in published package by [@​jackchuka](https://github.com/jackchuka) in [#​47](jackchuka/mdschema#47) **Full Changelog**: <jackchuka/mdschema@v0.12.2...v0.12.3> ### [`v0.12.2`](https://github.com/jackchuka/mdschema/releases/tag/v0.12.2) [Compare Source](jackchuka/mdschema@v0.12.1...v0.12.2) #### What's Changed - fix: npm bin url by [@​jackchuka](https://github.com/jackchuka) in [#​46](jackchuka/mdschema#46) **Full Changelog**: <jackchuka/mdschema@v0.12.0...v0.12.2> ### [`v0.12.1`](https://github.com/jackchuka/mdschema/releases/tag/v0.12.1) [Compare Source](jackchuka/mdschema@v0.12.0...v0.12.1) #### Changelog - [`c282027`](jackchuka/mdschema@c282027) feat(npm): add npm packages ([#​45](jackchuka/mdschema#45)) ### [`v0.12.0`](https://github.com/jackchuka/mdschema/releases/tag/v0.12.0) [Compare Source](jackchuka/mdschema@v0.11.2...v0.12.0) #### What's Changed - feat(npm): add npm packages by [@​jackchuka](https://github.com/jackchuka) in [#​45](jackchuka/mdschema#45) **Full Changelog**: <jackchuka/mdschema@v0.11.2...v0.12.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4zMS45IiwidXBkYXRlZEluVmVyIjoiNDMuMzEuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiUmVub3ZhdGUgQm90IiwiYXV0b21hdGlvbjpib3QtYXV0aG9yZWQiLCJkZXBlbmRlbmN5LXR5cGU6Om1pbm9yIl19-->
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request adds official npm packaging and publishing support for the
mdschematool, enabling users to install and runmdschemavia npm across all major platforms (macOS, Linux, Windows, both x64 and arm64). It introduces per-platform npm packages containing pre-built binaries, a main npm package with a cross-platform CLI, and an automated GitHub Actions workflow to build and publish these packages on release. The documentation is also updated to describe npm installation and usage.NPM packaging and distribution:
@jackchuka/mdschema-darwin-arm64,@jackchuka/mdschema-linux-x64, etc.) that each ship a pre-builtmdschemabinary for their respective OS/architecture. [1] [2] [3] [4] [5] [6]@jackchuka/mdschemanpm package, which depends on all platform-specific packages as optional dependencies and provides a CLI entry point.install.js) and platform detection logic (lib/platform.js) in the main package to select the correct binary or download it if necessary. [1] [2]Release automation:
Documentation:
README.mdto document npm installation and usage, including global install andnpxusage examples.