직접 사용하기 위해 만든 빌드 및 배포, git push를 모두 수행하는 스크립트입니다.
스크립트
MacOS 에서만 호환됩니다. Windows 에서도 사용하고자 한다면 파워쉘 명령어를 추가 작성해야 합니다.
"scripts" {
...
"commit": "git add . && git commit -m 'update .' && git push origin main",
"deploy-ps": "cmd /C \"set \"GIT_USER=hanarotg\" && yarn deploy\"",
"deploy-mac": "GIT_USER=hanarotg docusaurus deploy",
"all": "docusaurus build && GIT_USER=hanarotg docusaurus deploy && commit"
...
}
위 항목들을 package.json 에 추가합니다.
실행
yarn all
'소프트웨어 & 클라우드' 카테고리의 다른 글
[Windows] Tensorflow windows 11 WSL2 활용하여 설치하기 (0) | 2024.08.10 |
---|---|
[Docusaurus] Utterances 다크 모드 적용하기 (0) | 2024.08.10 |
[Docusaurus] Github page로 배포하기 (0) | 2024.08.08 |
[github blog] jekyll hyde 테마 초기 설정하기 (0) | 2024.01.24 |
[Play console] 구글 플레이 콘솔 개발자 계정 소유자 권한 이전하기 (0) | 2023.09.14 |