-
-
Notifications
You must be signed in to change notification settings - Fork 574
chore: replace npm with pnpm #1849
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
Merged
pedrolamas
merged 17 commits into
fluidd-core:develop
from
pedrolamas:pedrolamas/test-pnpm
May 20, 2026
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
9724853
chore: replaces npm with pnpm
pedrolamas 3705b72
chore: more pnpm related updates
pedrolamas 885f346
chore: pnpm workspace configuration
pedrolamas 10c962d
chore: devcontainer configuration
pedrolamas 9ff1d0d
chore: fix pnpm-store
pedrolamas bb7260a
chore: set default shell to zsh
pedrolamas c7dcfaf
chore: fix devcontainer network
pedrolamas 3282ea3
chore: allow .pnpm-store default path
pedrolamas 08a38fb
chore: minor fixes
pedrolamas 3fa3a51
docs: pnpm related updates
pedrolamas 4dad3b9
docs: mention corepack on getting-started
pedrolamas 1e72bf2
docs: follow up on PR comments
pedrolamas d7feee4
chore: follow up on PR comments
pedrolamas 8796ea4
chore: follow up on PR comments
pedrolamas d08c791
chore: follow up on PR comments
pedrolamas 3e9925f
chore: revert devcontainer network changes
pedrolamas 324adee
chore: update devcontainer port attributes
pedrolamas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| .DS_Store | ||
| node_modules | ||
| .pnpm-store | ||
| /dist | ||
| /dev-dist | ||
|
|
||
|
|
||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,11 @@ | ||
| FILES_TO_LINT=$(git diff --cached --name-only --diff-filter=ACMR | grep -iE "\.(js|mjs|ts|vue)$" || true) | ||
|
|
||
| if [ -n "$FILES_TO_LINT" ]; then | ||
| npx --no eslint -- --max-warnings 0 $FILES_TO_LINT | ||
| fi | ||
|
|
||
| FILES_TO_OPTIMIZE_SVG=$(git diff --cached --name-only --diff-filter=ACMR | grep -iE "^src\/globals\.ts$|\.(vue|svg)$" || true) | ||
|
|
||
| if [ -n "$FILES_TO_OPTIMIZE_SVG" ]; then | ||
| node tools/svgo.mjs $FILES_TO_OPTIMIZE_SVG | ||
| git diff --cached --name-only --diff-filter=ACMR -z \ | ||
| | grep -izE '\.(js|mjs|ts|vue)$' \ | ||
| | xargs -0 -r pnpm exec eslint --max-warnings 0 | ||
|
|
||
| if git diff --cached --name-only --diff-filter=ACMR | grep -iqE '^src/globals\.ts$|\.(vue|svg)$'; then | ||
| git diff --cached --name-only --diff-filter=ACMR -z \ | ||
| | grep -izE '^src/globals\.ts$|\.(vue|svg)$' \ | ||
| | xargs -0 -r node tools/svgo.mjs | ||
|
pedrolamas marked this conversation as resolved.
pedrolamas marked this conversation as resolved.
pedrolamas marked this conversation as resolved.
|
||
|
|
||
| git update-index --again | ||
| fi | ||
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.