**Design system for The Fair Golf**
npm install tfg-design-systemDesign system for The Fair Golf
``bash`
npm install tfg-design-system
`typescript
import { typography } from 'tfg-design-system';
const styles = {
heading: {
...typography.size['2xl'],
...typography.weight.bold,
},
paragraph: {
...typography.size.base,
...typography.weight.regular,
},
};
`
typescript
// 예시: colors.ts
export const colors = {
primary: '#007AFF',
secondary: '#5856D6',
newColor: '#FF5733', // 새로운 색상 추가
};
`
3. 빌드 및 배포: 변경 사항을 저장한 후, 라이브러리를 빌드하고 npm에 배포합니다.
`bash
npm run build
npm version patch
npm publish
`
4. 프로젝트 업데이트: 라이브러리의 새로운 버전을 설치하여 프로젝트에서 변경된 스타일을 사용합니다.
`bash
npm update tfg-design-system
``