-
Notifications
You must be signed in to change notification settings - Fork 209
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
build: move bash commands in scripts to shx #3083
Conversation
🦋 Changeset detectedLatest commit: 112f534 The changes in this PR will be included in the next version bump. This PR includes changesets to release 26 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
"clean": "turbo run clean", | ||
"dev": "TSUP_SKIP_DTS=true turbo run dev --concurrency 100 --filter=!@latticexyz/explorer", | ||
"dist-tag-rm": "pnpm recursive exec -- sh -c 'npm dist-tag rm $(cat package.json | jq -r \".name\") $TAG || true'", | ||
"docs:generate:api": "bun scripts/render-api-docs.ts", | ||
"docs:generate:api": "tsx scripts/render-api-docs.ts", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bun, or at least this version, doesn't run on windows, and we're only using it in these two spots, so figured we could standardize on tsx like everywhere else until we're ready to actually transition over to bun
pulled out of #3078
we use shell commands like
cp
,touch
,rm
, andmkdir
in scripts, but only hadrimraf
andmkdirp
as options for windows-safe versions of these commandsshx seems to be a more complete offering of shell commands via node