Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- github pdf
- 티스토리 성능
- animation
- adb connect
- augmentedDevice
- Git
- adb pair
- nextjs
- Recoil
- react-native-dotenv
- Failed to compiled
- vercel git lfs
- custom printing
- rolldown
- electron-packager
- 이미지 데이터 타입
- camera access
- camera permission
- Can't resolve
- npm package
- Each child in a list should have a unique "key" prop.
- react-native
- ELECTRON
- device in use
- github lfs
- html
- github 100mb
- ffi-napi
- silent printing
- dvh
Archives
- Today
- Total
Bleeding edge
2022/12/02 본문
파이널 프로젝트 피드백
- 신뢰성은 어떻게 확보할 것인가
- 페이지의 갯수가 적은 것은 어떤식으로 해결할 것인가
- 번역을 할 때는 주의 할 것
- 이슈 API 사용할 것
- 이슈 탬플릿이 너무 개발자스럽다
- package.json의 dependency삭제하는 방법
- 컨벤션, 깃, 린트, prettier
6. package.json dependency 삭제방법
import { readFileSync, writeFileSync } from 'fs';
const primitiveText = readFileSync('package.json');
const objectText = JSON.parse(primitiveText);
delete objectText.devDependencies;
delete objectText.dependencies;
delete objectText.peerDependencies;
delete objectText.scripts;
writeFileSync('./dist/package.json', JSON.stringify(objectText, null, 2));
다음과 같은 방법으로 해결하였다!.
'ConnecTo' 카테고리의 다른 글
2022/12/06 - packagejson (0) | 2022.12.06 |
---|---|
2022/12/05 - Bundler (0) | 2022.12.06 |
2022/12/01 - npm 배포 (0) | 2022.12.02 |
2022/11/30 (0) | 2022.11.30 |
2022/11/29 - Git actions (0) | 2022.11.30 |