-
Notifications
You must be signed in to change notification settings - Fork 47
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
Fix bezier-vscode extension bug #2507
base: main
Are you sure you want to change the base?
Fix bezier-vscode extension bug #2507
Conversation
- When packaging, it was impossible to reference dependencies in the parent directory
🦋 Changeset detectedLatest commit: 4d83420 The changes in this PR will be included in the next version bump. 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 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2507 +/- ##
=======================================
Coverage 82.31% 82.31%
=======================================
Files 143 143
Lines 2985 2985
Branches 919 923 +4
=======================================
Hits 2457 2457
Misses 497 497
Partials 31 31 ☔ View full report in Codecov by Sentry. |
Self Checklist
Related Issue
Summary
Details
vsce package --no-yarn
-> npm 으로 패키지를 시도하면invalid relative path: extension/../../vscode-languageclient/node
에러가 뜹니다. 상대경로를 제대로 resolve 하지 못하는 것 같습니다.vsce package
-> yarn 으로 패키지를 시도하면 vsce 내에서yarn list --no-prod --no-json
명령어를 수행하는데, 이 명령어는 yarn v1 에서만 있는 명령어라 현재 베지어 레포의 yarn 버전과 맞지 않아서 명령어를 실행할 수 없다는 에러가 뜹니다.yarn list --no-prod --no-json
를 yarn 플러그인으로 대체하는 옵션까지 했지만vsce ls
결과물에 의존성이 포함되지 않았습니다.Breaking change? (Yes/No)
References