Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🛠 Tooling: Figure out strategy with resolveBin #1992

Open
3 tasks done
JoshuaKGoldberg opened this issue Mar 18, 2025 · 0 comments
Open
3 tasks done

🛠 Tooling: Figure out strategy with resolveBin #1992

JoshuaKGoldberg opened this issue Mar 18, 2025 · 0 comments
Labels
area: tooling Managing the repository's maintenance status: in discussion Not yet ready for implementation or a pull request

Comments

@JoshuaKGoldberg
Copy link
Owner

JoshuaKGoldberg commented Mar 18, 2025

Tooling Report Checklist

  • I have tried restarting my IDE and the issue persists.
  • I have pulled the latest main branch of the repository.
  • I have searched for related issues and found none that matched my issue.

Overview

Right now in CTA, this resolveBin function is used to get the paths to binaries to execute:

// TODO: try to see if we can avoid this altogether...
// ...or failing that, create a package
export function resolveBin(bin: string) {
// This can't be tested yet in Vitest :(
// https://github.com/vitest-dev/vitest/issues/6953
return import.meta.resolve(bin).replace(/^file:\/\//gu, "");
}

scripts: [
{
commands: [
`node ${resolveBin("cspell-populate-words/bin/index.mjs")} ${wordArgs}`,
],
phase: CommandPhase.Process,
},
],

I don't love having a weird, rather-untestable function sitting around in the commands. It would be nice to figure out a cleaner approach than this... but I don't know what that would look like. 🤔

Additional Info

IIRC I'd added the resolveBin in there to work even if the project wasn't able to install its own dependencies. As in, it should use create-typescript-app/node_modules/ as the resolution root, not the generated package's.

Whatever solution is resolved here will likely need to be pushed up to Bingo. Other templates will have this issue as well.

🎁

@JoshuaKGoldberg JoshuaKGoldberg added area: tooling Managing the repository's maintenance status: in discussion Not yet ready for implementation or a pull request labels Mar 18, 2025
JoshuaKGoldberg added a commit that referenced this issue Mar 18, 2025
…#1994)

## PR Checklist

- [x] Addresses an existing open issue: fixes #1987
- [x] That issue was marked as [`status: accepting
prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
- [x] Steps in
[CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md)
were taken

## Overview

Cleans up some pending code TODOs:

* Bumping `@vitest/eslint-plugin` to include
vitest-dev/eslint-plugin-vitest#682
* Refactors `retGitDefaults` to execute a straightforward `git remote
get-url origin` instead of the full `git-remote-origin-url`
* Uses [`sort-keys`](http://npmjs.com/package/sort-keys) instead of the
ad-hoc internal `sortKeys`
* Uses [`zod-package-json`](http://npmjs.com/package/zod-package-json)
instead of a manually written schema

Otherwise doesn't change behavior, instead adding links to:

* #1990
* #1991
* #1992
* #1993

🎁
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: tooling Managing the repository's maintenance status: in discussion Not yet ready for implementation or a pull request
Projects
None yet
Development

No branches or pull requests

1 participant