Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wonsss/wonsss.github.io
마르코의 블로그
https://github.com/wonsss/wonsss.github.io
Last synced: 11 days ago
JSON representation
마르코의 블로그
- Host: GitHub
- URL: https://github.com/wonsss/wonsss.github.io
- Owner: wonsss
- License: mit
- Created: 2022-08-24T06:31:02.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-27T16:18:43.000Z (9 months ago)
- Last Synced: 2024-04-18T00:23:53.905Z (7 months ago)
- Language: JavaScript
- Homepage: https://wonsss.github.io
- Size: 63.6 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
## 설치 이슈 해결
### 설치 시 `ERR! sharp Prebuilt libvips 8.10.5 binaries are not yet available for darwin-arm64v8` 에러 발생 시 참고
node를 arm64 대신 x64로 설치해야 해결되는 문제이다. 아래와 같은 명령어를 입력하면 arm64가 출력될 것이다.
```bash
node -p 'process.arch'// arm64
```1. 터미널에서 `arch -x86_64 zsh` 입력하여 터미널 아키텍처 버전 변경
2. 프로젝트에서 사용하려는 노드 버전 제거 후 재설치 `nvm uninstall 14.21.3 && nvm install 14.21.3`
3. `node -p 'process.arch'` 로 다시 확인하면 x64 출력됨
4. 패키지 재설치 `rm -rf node_modules && npm install`## 진행중 이슈
### Spaces after list markers
- [Removed excessive spaces after line prefixes for unordered lists in Markdown #15526
](https://github.com/prettier/prettier/pull/15526)
- prettier에서 이 이슈가 해결되면, markdownlint에서 MD030 옵션을 다시 true로 켤 수 있을 것 같음.