당신의 모노페오를 위한 5가지 편리한 레나 깃발
1038 단어 projectlernamonorepojavascript
-- 범위
이 필터는 명령 실행 범위를 조건에 맞는 패키지로만 제한합니다.예를 들면 다음과 같습니다.
// starts a package with the name 'server'
lerna run --scope server start
// starts all packages end up on '-server'
lerna run --scope *-server start
// you can select multiple scopes at the same time
// executes either '-server's and '-client's 'start' command
lerna run --scope *-server --scope *-client start
무시
이것은 이전과 같지만 방식은 상반된다.기본적으로 패턴이나 이름과 일치하는 모든 내용을 배제합니다.
// Runs 'npm audit' everywhere, but in ui-library
lerna exec --ignore ui-library npm audit
// Runs 'npm audit' everywhere, but in dev-server and dev-client packages
lerna exec --ignore dev-{server,client} npm audit
-- 흐름/병렬
Find more about my personal monorepo experience on my blog
Reference
이 문제에 관하여(당신의 모노페오를 위한 5가지 편리한 레나 깃발), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/trycatch/top-5-handy-lerna-flags-for-your-monorepo-10fa텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)