-
-
Notifications
You must be signed in to change notification settings - Fork 959
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
feat: rm yarn, use npm #4741
Merged
Merged
feat: rm yarn, use npm #4741
Conversation
This file contains 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
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #4741 +/- ##
==========================================
- Coverage 98.73% 98.71% -0.02%
==========================================
Files 273 273
Lines 25928 25928
Branches 5378 5378
==========================================
- Hits 25599 25596 -3
- Misses 191 192 +1
- Partials 138 140 +2
☔ View full report in Codecov by Sentry. |
User can still use |
chemzqm
added a commit
that referenced
this pull request
Sep 3, 2023
17fe9d3 fix(vim): avoid throw error with Vim prefix 44539bd fix(format): avoid backslash on vim9script 654083c fix(highlight): add list highlight before VimEnter fab88b2 fix(plugin): enable static highlight groups before VimEnter 5353e87 feat(list): support g:coc_list_preview_filetype 5347239 feat: rm yarn, use npm (#4741) 1c4dbc9 feat(completion): support suggest.removeCurrentWord 8fcbc01 fix(document): avoid undefined line 6bb2e21 refactor(inlayHint): use api buffer.setVirtualText 0c2c64c fix(list): possible wrong height with winbar enabled 09e0c00 chore(doc): improve doc of CocCommand c7d73df chore(doc): documents snippetCancel action
shirayu
added a commit
to shirayu/dot_vim
that referenced
this pull request
Oct 4, 2024
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.
Remove
yarn
totally, usenpm
instead.After we upgrade
glob
to v10 34f5d96, this usesjackspeak
, andcliui
, which uses an renamedstring-width
that broken testing work. isaacs/jackspeak#5To fix this issue, use an earlier
glob
, or upgrade to yarn 3. This won't be fixed with yarn 1.I've tested several ways yesterday:
npm
.master
usersglob@9
, also supports signal that to fix Suppress scandir access error in/tmp
dir #4538jackspeak
, no breaks for anythingglob@9
corepack
to use yarn 3:corepack enable; corepack prepare yarn@3.6.3 --activate
pnpm
because more frontend projects like vue uses this, we can also usecorepack
to enable thisBecause yarn 1 is dead, I prefer to use
npm
, remove all yarn scripts.15c8946#commitcomment-126134192